/* Options: Date: 2025-12-06 07:49:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PlaceAddCategoryRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/place/add_category", Verbs="POST") open class PlaceAddCategoryRequest : IReturn, IPost, IHasPlaceId { override var placeId:Long? = null open var categoryAbsoluteSlug:String? = null companion object { private val responseType = PlaceAddCategoryResponse::class.java } override fun getResponseType(): Any? = PlaceAddCategoryRequest.responseType } open class PlaceAddCategoryResponse { open var addedCategoryPlaceId:Long? = null open var parentCategoriesAddedCount:Int? = null } interface IHasPlaceId { var placeId:Long? }