/* Options: Date: 2024-10-06 10:28:41 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: FinancialAidApplicationsRecalculateEndTermRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Finance/FinancialAid/Applications/RecalculateEndTerm/{start_term}", "POST") class FinancialAidApplicationsRecalculateEndTermRequest implements IReturn, IConvertible, IPost { String? authorizing_uuid; String? start_term; bool? submitted_only; FinancialAidApplicationsRecalculateEndTermRequest({this.authorizing_uuid,this.start_term,this.submitted_only}); FinancialAidApplicationsRecalculateEndTermRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { authorizing_uuid = json['authorizing_uuid']; start_term = json['start_term']; submitted_only = json['submitted_only']; return this; } Map toJson() => { 'authorizing_uuid': authorizing_uuid, 'start_term': start_term, 'submitted_only': submitted_only }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "FinancialAidApplicationsRecalculateEndTermRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinancialAidApplicationsRecalculateEndTermRequest': TypeInfo(TypeOf.Class, create:() => FinancialAidApplicationsRecalculateEndTermRequest()), });