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