/* Options: Date: 2025-12-06 07:51:24 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAllPaymentOptionRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BusinessApi { @Route(Path="/payment_option/get_all", Verbs="GET") public static class GetAllPaymentOptionRequest implements IReturn, IGet { private static Object responseType = GetAllPaymentOptionResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllPaymentOptionResponse { public ArrayList paymentOptions = new ArrayList(); public ArrayList getPaymentOptions() { return paymentOptions; } public GetAllPaymentOptionResponse setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } } public static enum PaymentOption { Visa, MasterCard, AmericanExpress, Diners, Vipps; } public static class PaymentOptionDto { public String label = null; public PaymentOption slug = null; public String getLabel() { return label; } public PaymentOptionDto setLabel(String value) { this.label = value; return this; } public PaymentOption getSlug() { return slug; } public PaymentOptionDto setSlug(PaymentOption value) { this.slug = value; return this; } } }