/* Options: Date: 2025-12-06 07:57:39 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: PlaceIncludeAddUploadRequest.* //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/add", Verbs="POST") public static class PlaceIncludeAddUploadRequest implements IReturn, IPost { public ArrayList placesToInclude = new ArrayList(); public ArrayList getPlacesToInclude() { return placesToInclude; } public PlaceIncludeAddUploadRequest setPlacesToInclude(ArrayList value) { this.placesToInclude = value; return this; } private static Object responseType = PlaceIncludeAddUploadResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceIncludeAddUploadResponse { public Integer placesAddedToInclude = null; public Integer getPlacesAddedToInclude() { return placesAddedToInclude; } public PlaceIncludeAddUploadResponse setPlacesAddedToInclude(Integer value) { this.placesAddedToInclude = 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; } } }