/* Options: Date: 2025-12-06 07:03:26 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: GetAllSelectedForEditingBrandRequest.* //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/get_all_selected_for_editing", Verbs="GET") open class GetAllSelectedForEditingBrandRequest : IReturn, IGet { companion object { private val responseType = GetAllSelectedForEditingBrandResponse::class.java } override fun getResponseType(): Any? = GetAllSelectedForEditingBrandRequest.responseType } open class GetAllSelectedForEditingBrandResponse { open var brands:ArrayList = ArrayList() } open class BackofficeBrandDto { open var id:Long? = null open var definedByRootCategoryId:Long? = null open var name:String? = null open var selectedForEditingInBackoffice:Boolean? = null }