/* Options: Date: 2024-07-03 13:23:19 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SyncToiCal.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/sync/icalsync/{companyid}/{token}", "GET") export class SyncToiCal implements ICompany { /** @description Enter the company, if blank and you are an admin, your company id will be used */ // @ApiMember(Description="Enter the company, if blank and you are an admin, your company id will be used", ParameterType="path") public CompanyId?: string; /** @description Query for specific Resources, default is all resources */ // @ApiMember(Description="Query for specific Resources, default is all resources", IsRequired=true, ParameterType="query") public ResourceIds: number[]; /** @description ICalSync Token */ // @ApiMember(Description="ICalSync Token", IsRequired=true, ParameterType="path") public Token: string; /** @description If you want to include the schedule time slots */ // @ApiMember(Description="If you want to include the schedule time slots", ParameterType="query") public IncludeSchedules: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SyncToiCal'; } public getMethod() { return 'GET'; } public createResponse() {} }