/* Options: Date: 2024-10-06 10:34:32 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: SyncNewPersonProcessQueueRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SyncNewPersonResponse implements IConvertible { ResponseStatus? responseStatus; bool? successfull; SyncNewPersonResponse({this.responseStatus,this.successfull}); SyncNewPersonResponse.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() => "SyncNewPersonResponse"; TypeContext? context = _ctx; } // @Route("/Sync/NewPerson", "POST") class SyncNewPersonProcessQueueRequest implements IReturn, IConvertible, IPost { SyncNewPersonProcessQueueRequest(); SyncNewPersonProcessQueueRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => SyncNewPersonResponse(); getResponseTypeName() => "SyncNewPersonResponse"; getTypeName() => "SyncNewPersonProcessQueueRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'SyncNewPersonResponse': TypeInfo(TypeOf.Class, create:() => SyncNewPersonResponse()), 'SyncNewPersonProcessQueueRequest': TypeInfo(TypeOf.Class, create:() => SyncNewPersonProcessQueueRequest()), });