/* Options: Date: 2025-12-06 08:52:09 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: RemoveCategoryFromPlaceRequest.* //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_category", Verbs="DELETE") public static class RemoveCategoryFromPlaceRequest implements IReturn, IDelete, IHasPlaceId { public Long placeId = null; public String categoryAbsoluteSlug = null; public Long getPlaceId() { return placeId; } public RemoveCategoryFromPlaceRequest setPlaceId(Long value) { this.placeId = value; return this; } public String getCategoryAbsoluteSlug() { return categoryAbsoluteSlug; } public RemoveCategoryFromPlaceRequest setCategoryAbsoluteSlug(String value) { this.categoryAbsoluteSlug = value; return this; } private static Object responseType = RemoveCategoryFromPlaceResponse.class; public Object getResponseType() { return responseType; } } public static class RemoveCategoryFromPlaceResponse { public Integer deleteCount = null; public Integer descendantCategoriesRemovedCount = null; public Integer getDeleteCount() { return deleteCount; } public RemoveCategoryFromPlaceResponse setDeleteCount(Integer value) { this.deleteCount = value; return this; } public Integer getDescendantCategoriesRemovedCount() { return descendantCategoriesRemovedCount; } public RemoveCategoryFromPlaceResponse setDescendantCategoriesRemovedCount(Integer value) { this.descendantCategoriesRemovedCount = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } }