/* Options: Date: 2025-12-06 07:04:22 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: LookupBrandsNotSelectedForEditingInBackofficeRequest.* //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/not_selected_for_editing", Verbs="GET") open class LookupBrandsNotSelectedForEditingInBackofficeRequest : IReturn, IGet { open var query:String? = null open var size:Int? = null open var offset:Int? = null companion object { private val responseType = LookupBrandsNotSelectedForEditingInBackofficeResponse::class.java } override fun getResponseType(): Any? = LookupBrandsNotSelectedForEditingInBackofficeRequest.responseType } open class LookupBrandsNotSelectedForEditingInBackofficeResponse { 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 }