/* Options: Date: 2025-04-04 17:04:22 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetContributionRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class GetOperationUnTenanted implements IHasGetOptions, IGet { String? embed; GetOperationUnTenanted({this.embed}); GetOperationUnTenanted.fromJson(Map json) { fromMap(json); } fromMap(Map json) { embed = json['embed']; return this; } Map toJson() => { 'embed': embed }; getTypeName() => "GetOperationUnTenanted<$TResponse>"; TypeContext? context = _ctx; } abstract class IHasGetOptions { String? embed; } abstract class ITenantedRequest { String? organisationId; } abstract class GetOperationTenanted extends GetOperationUnTenanted implements ITenantedRequest { String? organisationId; GetOperationTenanted({this.organisationId}); GetOperationTenanted.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); organisationId = json['organisationId']; return this; } Map toJson() => super.toJson()..addAll({ 'organisationId': organisationId }); getTypeName() => "GetOperationTenanted<$TResponse>"; TypeContext? context = _ctx; } class Contribution implements IIdentifiableResource, IConvertible { String? employerId; String? employerName; double? amount; DateTime? paymentDate; bool? distributed; String? id; Contribution({this.employerId,this.employerName,this.amount,this.paymentDate,this.distributed,this.id}); Contribution.fromJson(Map json) { fromMap(json); } fromMap(Map json) { employerId = json['employerId']; employerName = json['employerName']; amount = JsonConverters.toDouble(json['amount']); paymentDate = JsonConverters.fromJson(json['paymentDate'],'DateTime',context!); distributed = json['distributed']; id = json['id']; return this; } Map toJson() => { 'employerId': employerId, 'employerName': employerName, 'amount': amount, 'paymentDate': JsonConverters.toJson(paymentDate,'DateTime',context!), 'distributed': distributed, 'id': id }; getTypeName() => "Contribution"; TypeContext? context = _ctx; } abstract class IIdentifiableResource { String? id; } class GetContributionResponse implements IConvertible { ResponseStatus? responseStatus; Contribution? contribution; GetContributionResponse({this.responseStatus,this.contribution}); GetContributionResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); contribution = JsonConverters.fromJson(json['contribution'],'Contribution',context!); return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!), 'contribution': JsonConverters.toJson(contribution,'Contribution',context!) }; getTypeName() => "GetContributionResponse"; TypeContext? context = _ctx; } // @Route("/contributions/{Id}", "GET") class GetContributionRequest extends GetOperationTenanted implements IReturn, IConvertible { String? id; GetContributionRequest({this.id}); GetContributionRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); id = json['id']; return this; } Map toJson() => super.toJson()..addAll({ 'id': id }); createResponse() => GetContributionResponse(); getResponseTypeName() => "GetContributionResponse"; getTypeName() => "GetContributionRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'staging_api.billiecart.com.au', types: { 'GetOperationUnTenanted': TypeInfo(TypeOf.AbstractClass), 'IHasGetOptions': TypeInfo(TypeOf.Interface), 'ITenantedRequest': TypeInfo(TypeOf.Interface), 'GetOperationTenanted': TypeInfo(TypeOf.AbstractClass), 'Contribution': TypeInfo(TypeOf.Class, create:() => Contribution()), 'IIdentifiableResource': TypeInfo(TypeOf.Interface), 'GetContributionResponse': TypeInfo(TypeOf.Class, create:() => GetContributionResponse()), 'GetContributionRequest': TypeInfo(TypeOf.Class, create:() => GetContributionRequest()), });