' Options: 'Date: 2025-12-06 07:04:18 '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 '''MakeDataContractsExtensible: False '''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 Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports BusinessApi Namespace Global Namespace BusinessApi Public Partial Class GetAllPaymentOptionRequest Implements IReturn(Of GetAllPaymentOptionResponse) Implements IGet End Class Public Partial Class GetAllPaymentOptionResponse Public Property PaymentOptions As List(Of PaymentOptionDto) = New List(Of PaymentOptionDto) End Class Public Partial Class PaymentOptionDto Public Property Label As String Public Property Slug As PaymentOption End Class Public Enum PaymentOption Visa MasterCard AmericanExpress Diners Vipps End Enum End Namespace End Namespace