/* Options: Date: 2024-07-03 12:43:59 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BillingMethodQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class BaseModel implements IConvertible { BaseModel(); BaseModel.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "BaseModel"; TypeContext? context = _ctx; } class BillingMethodCountriesRelation extends BaseModel implements IConvertible { // @Required() int? BillingMethodId; // @Required() String? CountryId; DateTime? ModifiedDate; BillingMethodCountriesRelation({this.BillingMethodId,this.CountryId,this.ModifiedDate}); BillingMethodCountriesRelation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); BillingMethodId = json['BillingMethodId']; CountryId = json['CountryId']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'BillingMethodId': BillingMethodId, 'CountryId': CountryId, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "BillingMethodCountriesRelation"; TypeContext? context = _ctx; } class BillingMethod extends BaseModel implements IConvertible { List? BillingMethodCountriesRelation; // @Required() String? Name; // @Required() String? Description; DateTime? ModifiedDate; int? Id; BillingMethod({this.BillingMethodCountriesRelation,this.Name,this.Description,this.ModifiedDate,this.Id}); BillingMethod.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); BillingMethodCountriesRelation = JsonConverters.fromJson(json['BillingMethodCountriesRelation'],'List',context!); Name = json['Name']; Description = json['Description']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'BillingMethodCountriesRelation': JsonConverters.toJson(BillingMethodCountriesRelation,'List',context!), 'Name': Name, 'Description': Description, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'Id': Id }); getTypeName() => "BillingMethod"; TypeContext? context = _ctx; } class BillingMethodQueryResponse implements IConvertible { /** * The billing method id */ // @ApiMember(Description="The billing method id") int? Id; /** * The billing method name */ // @ApiMember(Description="The billing method name") String? Name; /** * The billing method description */ // @ApiMember(Description="The billing method description") String? Description; /** * The billing method is valid for the following countries */ // @ApiMember(Description="The billing method is valid for the following countries") List? Countries; BillingMethodQueryResponse({this.Id,this.Name,this.Description,this.Countries}); BillingMethodQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; Description = json['Description']; Countries = JsonConverters.fromJson(json['Countries'],'List',context!); return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'Description': Description, 'Countries': JsonConverters.toJson(Countries,'List',context!) }; getTypeName() => "BillingMethodQueryResponse"; TypeContext? context = _ctx; } // @Route("/billing/methods", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class BillingMethodQuery extends QueryDb2 implements IReturn>, IConvertible, IGet { /** * If you want to only get billing methods that are valid for a specific country */ // @ApiMember(DataType="string", Description="If you want to only get billing methods that are valid for a specific country", ParameterType="query") String? CountryId; BillingMethodQuery({this.CountryId}); BillingMethodQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CountryId = json['CountryId']; return this; } Map toJson() => super.toJson()..addAll({ 'CountryId': CountryId }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "BillingMethodQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'BillingMethodCountriesRelation': TypeInfo(TypeOf.Class, create:() => BillingMethodCountriesRelation()), 'BillingMethod': TypeInfo(TypeOf.Class, create:() => BillingMethod()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'BillingMethodQueryResponse': TypeInfo(TypeOf.Class, create:() => BillingMethodQueryResponse()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'BillingMethodQuery': TypeInfo(TypeOf.Class, create:() => BillingMethodQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });