/* Options: Date: 2025-04-10 08:09:36 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: SectionRefundScheduleCreateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Sections/{reporting_term}/{section_uuid}/RefundSchedule/Create", "POST") class SectionRefundScheduleCreateRequest implements IReturn, IConvertible, IPost { String? section_uuid; String? authorizing_uuid; String? rate_code; String? reporting_term; double? percentage; DateTime? start_date; DateTime? end_date; SectionRefundScheduleCreateRequest({this.section_uuid,this.authorizing_uuid,this.rate_code,this.reporting_term,this.percentage,this.start_date,this.end_date}); SectionRefundScheduleCreateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { section_uuid = json['section_uuid']; authorizing_uuid = json['authorizing_uuid']; rate_code = json['rate_code']; 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() => { 'section_uuid': section_uuid, 'authorizing_uuid': authorizing_uuid, 'rate_code': rate_code, '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() => "SectionRefundScheduleCreateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'SectionRefundScheduleCreateRequest': TypeInfo(TypeOf.Class, create:() => SectionRefundScheduleCreateRequest()), });