/* Options: Date: 2025-12-06 07:07:35 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllPaymentOptionRequest.* //ExcludeTypes: //DefaultImports: */ export module BusinessApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export enum PaymentOption { Visa = 'Visa', MasterCard = 'MasterCard', AmericanExpress = 'AmericanExpress', Diners = 'Diners', Vipps = 'Vipps', } export class PaymentOptionDto { public label: string; public slug?: PaymentOption; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetAllPaymentOptionResponse { public paymentOptions: PaymentOptionDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment_option/get_all", "GET") export class GetAllPaymentOptionRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllPaymentOptionRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllPaymentOptionResponse(); } } }