/* Options: Date: 2024-10-06 10:26:46 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: StudentProgramGraduateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/StudentProgram/{uuid}/Graduate/{id}", "POST") class StudentProgramGraduateRequest implements IReturn, IConvertible, IPost { String? uuid; int? id; DateTime? commencement_date; String? authorizing_uuid; StudentProgramGraduateRequest({this.uuid,this.id,this.commencement_date,this.authorizing_uuid}); StudentProgramGraduateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; id = json['id']; commencement_date = JsonConverters.fromJson(json['commencement_date'],'DateTime',context!); authorizing_uuid = json['authorizing_uuid']; return this; } Map toJson() => { 'uuid': uuid, 'id': id, 'commencement_date': JsonConverters.toJson(commencement_date,'DateTime',context!), 'authorizing_uuid': authorizing_uuid }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "StudentProgramGraduateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'StudentProgramGraduateRequest': TypeInfo(TypeOf.Class, create:() => StudentProgramGraduateRequest()), });