/* Options: Date: 2025-12-06 06:59: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: PlaceAddBarTypeRequest.* //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/add_bar_type", Verbs="POST") public static class PlaceAddBarTypeRequest implements IReturn, IPost, IHasPlaceId { public Long placeId = null; public String barTypeSlug = null; public Long getPlaceId() { return placeId; } public PlaceAddBarTypeRequest setPlaceId(Long value) { this.placeId = value; return this; } public String getBarTypeSlug() { return barTypeSlug; } public PlaceAddBarTypeRequest setBarTypeSlug(String value) { this.barTypeSlug = value; return this; } private static Object responseType = PlaceAddBarTypeResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceAddBarTypeResponse { public String barTypeSlug = null; public String getBarTypeSlug() { return barTypeSlug; } public PlaceAddBarTypeResponse setBarTypeSlug(String value) { this.barTypeSlug = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } }