/* Options: Date: 2024-06-26 08:37:23 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ServiceGroupsQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ServiceGroupsQueryResponse { public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/services/groups", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ServiceGroupsQuery implements IReturn { /** @description Company to show service groups for */ // @ApiMember(Description="Company to show service groups for", ParameterType="query") public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ServiceGroupsQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new ServiceGroupsQueryResponse(); } }