/* Options: Date: 2026-02-27 02:46:43 Version: 10.05 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: GetGoogleMeetAuthUrl.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class GoogleMeetAuthUrlResponse { public AuthUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/google/meet/auth/{ResourceId}", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class GetGoogleMeetAuthUrl implements IReturn, ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; /** @description The resource id to connect the Google account to. Use 0 for a company-wide default. */ // @ApiMember(Description="The resource id to connect the Google account to. Use 0 for a company-wide default.", IsRequired=true, ParameterType="path") public ResourceId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetGoogleMeetAuthUrl'; } public getMethod() { return 'GET'; } public createResponse() { return new GoogleMeetAuthUrlResponse(); } }