/* Options: Date: 2024-10-06 10:33:00 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: CRMPaymentsInfoRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class CRMPaymentsInfoResponse implements IConvertible { ResponseStatus? responseStatus; int? count; int? lowest_version_number; int? highest_version_number; CRMPaymentsInfoResponse({this.responseStatus,this.count,this.lowest_version_number,this.highest_version_number}); CRMPaymentsInfoResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); count = json['count']; lowest_version_number = json['lowest_version_number']; highest_version_number = json['highest_version_number']; return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!), 'count': count, 'lowest_version_number': lowest_version_number, 'highest_version_number': highest_version_number }; getTypeName() => "CRMPaymentsInfoResponse"; TypeContext? context = _ctx; } // @Route("/DynamicsCRM/Payments/Info", "POST") class CRMPaymentsInfoRequest implements IReturn, IConvertible, IPost { CRMPaymentsInfoRequest(); CRMPaymentsInfoRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => CRMPaymentsInfoResponse(); getResponseTypeName() => "CRMPaymentsInfoResponse"; getTypeName() => "CRMPaymentsInfoRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'CRMPaymentsInfoResponse': TypeInfo(TypeOf.Class, create:() => CRMPaymentsInfoResponse()), 'CRMPaymentsInfoRequest': TypeInfo(TypeOf.Class, create:() => CRMPaymentsInfoRequest()), });