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