/* Options: Date: 2025-05-06 15:38:30 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetPaymentMethod.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/paymentMethods/intid/{Id}", "GET POST") // @Route("/paymentMethods/nameid/{NameId}", "GET POST") public class GetPaymentMethod : IReturn, Codable { public typealias Return = PaymentMethod public var id:Int? public var nameId:String? required public init(){} } public class PaymentMethod : Codable { public var id:Int? public var paymentMethodId:String? public var paymentMethodName:String? public var active:Bool? public var needsCardInfo:Bool? required public init(){} }