/* Options: Date: 2025-10-28 04:39:29 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: LicenseTransactionsById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class LicenseTransactionsByIdResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=8) ResponseStatus? ResponseStatus; LicenseTransactionsByIdResponse({this.Id,this.ResponseStatus}); LicenseTransactionsByIdResponse.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() => "LicenseTransactionsByIdResponse"; TypeContext? context = _ctx; } // @Route("/license_transactions/{Id}", "GET") // @DataContract class LicenseTransactionsById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; LicenseTransactionsById({this.Id}); LicenseTransactionsById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => LicenseTransactionsByIdResponse(); getResponseTypeName() => "LicenseTransactionsByIdResponse"; getTypeName() => "LicenseTransactionsById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'LicenseTransactionsByIdResponse': TypeInfo(TypeOf.Class, create:() => LicenseTransactionsByIdResponse()), 'LicenseTransactionsById': TypeInfo(TypeOf.Class, create:() => LicenseTransactionsById()), });