/* Options: Date: 2025-10-28 02:32:52 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentPlansById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class PaymentPlansByIdResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=10) ResponseStatus? ResponseStatus; PaymentPlansByIdResponse({this.Id,this.ResponseStatus}); PaymentPlansByIdResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "PaymentPlansByIdResponse"; TypeContext? context = _ctx; } // @Route("/payment_plans/{Id}", "GET") // @DataContract class PaymentPlansById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; PaymentPlansById({this.Id}); PaymentPlansById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => PaymentPlansByIdResponse(); getResponseTypeName() => "PaymentPlansByIdResponse"; getTypeName() => "PaymentPlansById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'PaymentPlansByIdResponse': TypeInfo(TypeOf.Class, create:() => PaymentPlansByIdResponse()), 'PaymentPlansById': TypeInfo(TypeOf.Class, create:() => PaymentPlansById()), });