/* Options: Date: 2024-12-29 02:02:47 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: SyncBioAndAddressProcessQueueRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SyncBioAndAddressResponse implements IConvertible { ResponseStatus? responseStatus; bool? successfull; SyncBioAndAddressResponse({this.responseStatus,this.successfull}); SyncBioAndAddressResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); successfull = json['successfull']; return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!), 'successfull': successfull }; getTypeName() => "SyncBioAndAddressResponse"; TypeContext? context = _ctx; } // @Route("/Sync/BioAndAddressProcessQueue", "POST") class SyncBioAndAddressProcessQueueRequest implements IReturn, IConvertible, IPost { int? regent_id; SyncBioAndAddressProcessQueueRequest({this.regent_id}); SyncBioAndAddressProcessQueueRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { regent_id = json['regent_id']; return this; } Map toJson() => { 'regent_id': regent_id }; createResponse() => SyncBioAndAddressResponse(); getResponseTypeName() => "SyncBioAndAddressResponse"; getTypeName() => "SyncBioAndAddressProcessQueueRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'SyncBioAndAddressResponse': TypeInfo(TypeOf.Class, create:() => SyncBioAndAddressResponse()), 'SyncBioAndAddressProcessQueueRequest': TypeInfo(TypeOf.Class, create:() => SyncBioAndAddressProcessQueueRequest()), });