/* Options: Date: 2025-12-06 07:03:31 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetAllPaymentOptionRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/payment_option/get_all", "GET") public class GetAllPaymentOptionRequest : IReturn, IGet, Codable { public typealias Return = GetAllPaymentOptionResponse required public init(){} } public class GetAllPaymentOptionResponse : Codable { public var paymentOptions:[PaymentOptionDto] = [] required public init(){} } public enum PaymentOption : String, Codable { case Visa case MasterCard case AmericanExpress case Diners case Vipps } public class PaymentOptionDto : Codable { public var label:String? public var slug:PaymentOption? required public init(){} }