/* Options: Date: 2025-12-06 07:07:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PlaceRemoveBarTypeRequest.* //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 BusinessApi { @Route(Path="/place/remove_bar_type", Verbs="DELETE") public static class PlaceRemoveBarTypeRequest implements IReturn, IDelete, IHasPlaceId { public Long placeId = null; public String barTypeSlug = null; public Long getPlaceId() { return placeId; } public PlaceRemoveBarTypeRequest setPlaceId(Long value) { this.placeId = value; return this; } public String getBarTypeSlug() { return barTypeSlug; } public PlaceRemoveBarTypeRequest setBarTypeSlug(String value) { this.barTypeSlug = value; return this; } private static Object responseType = PlaceRemoveBarTypeResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceRemoveBarTypeResponse { public String barTypeSlug = null; public String getBarTypeSlug() { return barTypeSlug; } public PlaceRemoveBarTypeResponse setBarTypeSlug(String value) { this.barTypeSlug = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } }