/* Options: Date: 2024-12-15 19:48:32 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: CreatePaymentRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/payments", "POST") public class CreatePaymentRequest : PostOperationTenanted, IReturn { public typealias Return = CreatePaymentResponse public var salaryPackageId:String? public var amount:Double? public var gstAmount:Double? public var particulars:String? public var budgetCategory:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case salaryPackageId case amount case gstAmount case particulars case budgetCategory } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) salaryPackageId = try container.decodeIfPresent(String.self, forKey: .salaryPackageId) amount = try container.decodeIfPresent(Double.self, forKey: .amount) gstAmount = try container.decodeIfPresent(Double.self, forKey: .gstAmount) particulars = try container.decodeIfPresent(String.self, forKey: .particulars) budgetCategory = try container.decodeIfPresent(String.self, forKey: .budgetCategory) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if salaryPackageId != nil { try container.encode(salaryPackageId, forKey: .salaryPackageId) } if amount != nil { try container.encode(amount, forKey: .amount) } if gstAmount != nil { try container.encode(gstAmount, forKey: .gstAmount) } if particulars != nil { try container.encode(particulars, forKey: .particulars) } if budgetCategory != nil { try container.encode(budgetCategory, forKey: .budgetCategory) } } } public class CreatePaymentResponse : Codable { public var responseStatus:ResponseStatus? public var payment:Payment? required public init(){} } public class PostOperationUnTenanted : IPost, Codable { required public init(){} } public class PostOperationTenanted : PostOperationUnTenanted, ITenantedRequest { public var organisationId:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case organisationId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) organisationId = try container.decodeIfPresent(String.self, forKey: .organisationId) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if organisationId != nil { try container.encode(organisationId, forKey: .organisationId) } } } public protocol ITenantedRequest { var organisationId:String? { get set } } public class Payment : IIdentifiableResource, Codable { public var salaryPackageId:String? public var amount:Double? public var gstAmount:Double? public var particulars:String? public var budgetCategory:String? public var status:String? public var toAccount:BankAccount? public var id:String? required public init(){} } public protocol IIdentifiableResource { var id:String? { get set } } public class BankAccount : Codable { public var bsbNumber:String? public var accountNumber:String? required public init(){} }