/* Options: Date: 2024-06-16 19:10:58 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: ScheduleTypeQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ScheduleTypeResponse { public Id: number; public Name: string; public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/services/scheduletypes", "GET") export class ScheduleTypeQuery implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ScheduleTypeQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new ScheduleTypeResponse(); } }