/* Options: Date: 2025-12-06 07:10:36 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: PlaceExcludeRemoveUploadRequest.* //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/remove", Verbs="POST") public static class PlaceExcludeRemoveUploadRequest implements IReturn, IPost { public ArrayList placesToRemoveFromExclude = new ArrayList(); public ArrayList getPlacesToRemoveFromExclude() { return placesToRemoveFromExclude; } public PlaceExcludeRemoveUploadRequest setPlacesToRemoveFromExclude(ArrayList value) { this.placesToRemoveFromExclude = value; return this; } private static Object responseType = PlaceExcludeRemoveUploadResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceExcludeRemoveUploadResponse { public Integer placesRemovedFromExclude = null; public Integer getPlacesRemovedFromExclude() { return placesRemovedFromExclude; } public PlaceExcludeRemoveUploadResponse setPlacesRemovedFromExclude(Integer value) { this.placesRemovedFromExclude = 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; } } }