(* Options: Date: 2025-12-06 07:05:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAllPaymentOptionRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type PaymentOption = | Visa = 0 | MasterCard = 1 | AmericanExpress = 2 | Diners = 3 | Vipps = 4 [] type PaymentOptionDto() = member val Label:String = null with get,set member val Slug:PaymentOption = new PaymentOption() with get,set [] type GetAllPaymentOptionResponse() = member val PaymentOptions:ResizeArray = new ResizeArray() with get,set [] [] type GetAllPaymentOptionRequest() = interface IReturn interface IGet