/* Options: Date: 2024-10-06 10:34:38 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: SectionRefundScheduleUpdateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Sections/{reporting_term}/RefundSchedule/{uuid}/Update", "POST") class SectionRefundScheduleUpdateRequest implements IReturn, IConvertible, IPost { String? uuid; String? authorizing_uuid; String? reporting_term; double? percentage; DateTime? start_date; DateTime? end_date; SectionRefundScheduleUpdateRequest({this.uuid,this.authorizing_uuid,this.reporting_term,this.percentage,this.start_date,this.end_date}); SectionRefundScheduleUpdateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; authorizing_uuid = json['authorizing_uuid']; reporting_term = json['reporting_term']; percentage = JsonConverters.toDouble(json['percentage']); start_date = JsonConverters.fromJson(json['start_date'],'DateTime',context!); end_date = JsonConverters.fromJson(json['end_date'],'DateTime',context!); return this; } Map toJson() => { 'uuid': uuid, 'authorizing_uuid': authorizing_uuid, 'reporting_term': reporting_term, 'percentage': percentage, 'start_date': JsonConverters.toJson(start_date,'DateTime',context!), 'end_date': JsonConverters.toJson(end_date,'DateTime',context!) }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "SectionRefundScheduleUpdateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'SectionRefundScheduleUpdateRequest': TypeInfo(TypeOf.Class, create:() => SectionRefundScheduleUpdateRequest()), });