/* Options: Date: 2025-12-06 09:24:48 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PlaceExcludeAddUploadRequest.* //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 BackofficeApi { @Route(Path="/place_exclude/add", Verbs="POST") public static class PlaceExcludeAddUploadRequest implements IReturn, IPost { public ArrayList placesToExclude = new ArrayList(); public ArrayList getPlacesToExclude() { return placesToExclude; } public PlaceExcludeAddUploadRequest setPlacesToExclude(ArrayList value) { this.placesToExclude = value; return this; } private static Object responseType = PlaceExcludeAddUploadResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceExcludeAddUploadResponse { public Integer placesAddedToExclude = null; public Integer getPlacesAddedToExclude() { return placesAddedToExclude; } public PlaceExcludeAddUploadResponse setPlacesAddedToExclude(Integer value) { this.placesAddedToExclude = value; return this; } } public static class PlaceExcludeDto { public String country = null; public String organizationNumber = null; public String note = null; public String getCountry() { return country; } public PlaceExcludeDto setCountry(String value) { this.country = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceExcludeDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getNote() { return note; } public PlaceExcludeDto setNote(String value) { this.note = value; return this; } } }