/* Options: Date: 2026-02-03 19:44:42 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FinancialAidInvoicesInTermRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Finance/FinancialAid/Invoices/{reporting_term}", "POST") class FinancialAidInvoicesInTermRequest implements IReturn>, IConvertible, IPost { String? reporting_term; FinancialAidInvoicesInTermRequest({this.reporting_term}); FinancialAidInvoicesInTermRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { reporting_term = json['reporting_term']; return this; } Map toJson() => { 'reporting_term': reporting_term }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FinancialAidInvoicesInTermRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinancialAidInvoicesInTermRequest': TypeInfo(TypeOf.Class, create:() => FinancialAidInvoicesInTermRequest()), });