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