/* Options: Date: 2024-07-03 13:09:13 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: BillingMethodQuery.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/billing/methods", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public class BillingMethodQuery : QueryDb2, IReturn { public typealias Return = QueryResponse /** * 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") public var countryId:String required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case countryId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) countryId = try container.decodeIfPresent(String.self, forKey: .countryId) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if countryId != nil { try container.encode(countryId, forKey: .countryId) } } } public class BillingMethod : BaseModel { public var billingMethodCountriesRelation:[BillingMethodCountriesRelation] = [] // @Required() public var name:String? // @Required() public var Description:String? public var modifiedDate:Date? public var id:Int required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case billingMethodCountriesRelation case name case Description case modifiedDate case id } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) billingMethodCountriesRelation = try container.decodeIfPresent([BillingMethodCountriesRelation].self, forKey: .billingMethodCountriesRelation) ?? [] name = try container.decodeIfPresent(String.self, forKey: .name) Description = try container.decodeIfPresent(String.self, forKey: .Description) modifiedDate = try container.decodeIfPresent(Date.self, forKey: .modifiedDate) id = try container.decodeIfPresent(Int.self, forKey: .id) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if billingMethodCountriesRelation.count > 0 { try container.encode(billingMethodCountriesRelation, forKey: .billingMethodCountriesRelation) } if name != nil { try container.encode(name, forKey: .name) } if Description != nil { try container.encode(Description, forKey: .Description) } if modifiedDate != nil { try container.encode(modifiedDate, forKey: .modifiedDate) } if id != nil { try container.encode(id, forKey: .id) } } } public class BillingMethodQueryResponse : Codable { /** * The billing method id */ // @ApiMember(Description="The billing method id") public var id:Int /** * The billing method name */ // @ApiMember(Description="The billing method name") public var name:String /** * The billing method description */ // @ApiMember(Description="The billing method description") public var Description:String /** * The billing method is valid for the following countries */ // @ApiMember(Description="The billing method is valid for the following countries") public var countries:[String] = [] required public init(){} } public class BaseModel : Codable { required public init(){} } public class BillingMethodCountriesRelation : BaseModel { // @Required() public var billingMethodId:Int? // @Required() public var countryId:String? public var modifiedDate:Date? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case billingMethodId case countryId case modifiedDate } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) billingMethodId = try container.decodeIfPresent(Int.self, forKey: .billingMethodId) countryId = try container.decodeIfPresent(String.self, forKey: .countryId) modifiedDate = try container.decodeIfPresent(Date.self, forKey: .modifiedDate) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if billingMethodId != nil { try container.encode(billingMethodId, forKey: .billingMethodId) } if countryId != nil { try container.encode(countryId, forKey: .countryId) } if modifiedDate != nil { try container.encode(modifiedDate, forKey: .modifiedDate) } } }