/* Options: Date: 2025-12-06 07:58:54 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: PlaceIncludeRemoveUploadRequest.* //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_include/remove", Verbs="POST") public static class PlaceIncludeRemoveUploadRequest implements IReturn, IPost { public ArrayList placesToRemoveFromInclude = new ArrayList(); public ArrayList getPlacesToRemoveFromInclude() { return placesToRemoveFromInclude; } public PlaceIncludeRemoveUploadRequest setPlacesToRemoveFromInclude(ArrayList value) { this.placesToRemoveFromInclude = value; return this; } private static Object responseType = PlaceIncludeRemoveUploadResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceIncludeRemoveUploadResponse { public Integer placesRemovedFromInclude = null; public Integer getPlacesRemovedFromInclude() { return placesRemovedFromInclude; } public PlaceIncludeRemoveUploadResponse setPlacesRemovedFromInclude(Integer value) { this.placesRemovedFromInclude = value; return this; } } public static class PlaceIncludeDto { public String country = null; public String organizationNumber = null; public String optionalRootCategory = null; public String note = null; public String getCountry() { return country; } public PlaceIncludeDto setCountry(String value) { this.country = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceIncludeDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getOptionalRootCategory() { return optionalRootCategory; } public PlaceIncludeDto setOptionalRootCategory(String value) { this.optionalRootCategory = value; return this; } public String getNote() { return note; } public PlaceIncludeDto setNote(String value) { this.note = value; return this; } } }