/* Options: Date: 2025-12-06 07:03:24 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateBrandRequest.* //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="/brand/update", Verbs="PUT") open class UpdateBrandRequest : IReturn, IPut { open var id:Long? = null open var definedByRootCategoryId:Long? = null open var name:String? = null open var selectedForEditingInBackoffice:Boolean? = null companion object { private val responseType = UpdateBrandResponse::class.java } override fun getResponseType(): Any? = UpdateBrandRequest.responseType } open class UpdateBrandResponse { open var brand:BackofficeBrandDto? = null } open class BackofficeBrandDto { open var id:Long? = null open var definedByRootCategoryId:Long? = null open var name:String? = null open var selectedForEditingInBackoffice:Boolean? = null }