/* Options: Date: 2024-07-03 12:46:45 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ServiceGroupsQuery.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/services/groups", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") public static class ServiceGroupsQuery implements IReturn { /** * Company to show service groups for */ @ApiMember(Description="Company to show service groups for", ParameterType="query") public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public ServiceGroupsQuery setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = ServiceGroupsQueryResponse.class; public Object getResponseType() { return responseType; } } public static class ServiceGroupsQueryResponse { public String Name = null; public String getName() { return Name; } public ServiceGroupsQueryResponse setName(String value) { this.Name = value; return this; } } }