/* Options: Date: 2025-12-06 06:31:05 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: PlaceRemoveBrandRequest.* //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_brand", Verbs="DELETE") public static class PlaceRemoveBrandRequest implements IReturn, IDelete, IHasPlaceId { public Long placeId = null; public Long brandId = null; public Long placeCustomBrandId = null; public Integer categoryId = null; public Long getPlaceId() { return placeId; } public PlaceRemoveBrandRequest setPlaceId(Long value) { this.placeId = value; return this; } public Long getBrandId() { return brandId; } public PlaceRemoveBrandRequest setBrandId(Long value) { this.brandId = value; return this; } public Long getPlaceCustomBrandId() { return placeCustomBrandId; } public PlaceRemoveBrandRequest setPlaceCustomBrandId(Long value) { this.placeCustomBrandId = value; return this; } public Integer getCategoryId() { return categoryId; } public PlaceRemoveBrandRequest setCategoryId(Integer value) { this.categoryId = value; return this; } private static Object responseType = PlaceRemoveBrandResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceRemoveBrandResponse { public Long brandId = null; public Long placeCustomBrandId = null; public Long categoryId = null; public Long getBrandId() { return brandId; } public PlaceRemoveBrandResponse setBrandId(Long value) { this.brandId = value; return this; } public Long getPlaceCustomBrandId() { return placeCustomBrandId; } public PlaceRemoveBrandResponse setPlaceCustomBrandId(Long value) { this.placeCustomBrandId = value; return this; } public Long getCategoryId() { return categoryId; } public PlaceRemoveBrandResponse setCategoryId(Long value) { this.categoryId = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } }