/* Options: Date: 2025-12-06 07:00:26 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: PlaceUpdatePaymentOptionRequest.* //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="/place/update_payment_option", Verbs="PUT") public static class PlaceUpdatePaymentOptionRequest implements IReturn, IPut, IHasPlaceId { public Long placeId = null; public ArrayList paymentOptions = new ArrayList(); public Long getPlaceId() { return placeId; } public PlaceUpdatePaymentOptionRequest setPlaceId(Long value) { this.placeId = value; return this; } public ArrayList getPaymentOptions() { return paymentOptions; } public PlaceUpdatePaymentOptionRequest setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } private static Object responseType = PlaceUpdatePaymentOptionResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceUpdatePaymentOptionResponse { public ArrayList paymentOptions = new ArrayList(); public ArrayList getPaymentOptions() { return paymentOptions; } public PlaceUpdatePaymentOptionResponse setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } public static enum PaymentOption { Visa, MasterCard, AmericanExpress, Diners, Vipps; } }