/* Options: Date: 2025-12-06 07:07:24 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: PlaceRemoveRequest.* //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/remove", Verbs="POST") public static class PlaceRemoveRequest implements IReturn, IPost { public Long id = null; public Long getId() { return id; } public PlaceRemoveRequest setId(Long value) { this.id = value; return this; } private static Object responseType = PlaceRemoveResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceRemoveResponse { public Long id = null; public Long getId() { return id; } public PlaceRemoveResponse setId(Long value) { this.id = value; return this; } } }