/* Options: Date: 2024-06-16 23:11:39 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ServiceGroupsQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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") var CompanyId:UUID? = null companion object { private val responseType = ServiceGroupsQueryResponse::class.java } override fun getResponseType(): Any? = ServiceGroupsQuery.responseType } open class ServiceGroupsQueryResponse { var Name:String? = null }