/* Options: Date: 2025-09-13 16:26:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ServiceGroupsQuery.* //ExcludeTypes: //InitializeCollections: False //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="/services/groups", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ServiceGroupsQuery : IReturn { /** * Company to show service groups for */ @ApiMember(Description="Company to show service groups for", ParameterType="query") open var CompanyId:UUID? = null companion object { private val responseType = ServiceGroupsQueryResponse::class.java } override fun getResponseType(): Any? = ServiceGroupsQuery.responseType } open class ServiceGroupsQueryResponse { open var Name:String? = null }