/* Options: Date: 2025-12-06 07:01:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetAllPaymentOptionRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using BusinessApi; namespace BusinessApi { [Route("/payment_option/get_all", "GET")] public partial class GetAllPaymentOptionRequest : IReturn, IGet { } public partial class GetAllPaymentOptionResponse { public List PaymentOptions { get; set; } = []; } public partial class PaymentOptionDto { public string Label { get; set; } public PaymentOption Slug { get; set; } } public enum PaymentOption { Visa, MasterCard, AmericanExpress, Diners, Vipps, } }