/* Options: Date: 2026-04-15 03:40:32 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DisconnectGoogleMeet.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class GoogleMeetStatusResponse { public Connected: boolean; public GoogleAccountEmail: string; public CalendarId: string; public ConnectedSince?: string; public NeedsReauth: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/google/meet/auth/{ResourceId}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") export class DisconnectGoogleMeet 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 disconnect. Use 0 for company-wide default. */ // @ApiMember(Description="The resource id to disconnect. Use 0 for company-wide default.", IsRequired=true, ParameterType="path") public ResourceId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DisconnectGoogleMeet'; } public getMethod() { return 'DELETE'; } public createResponse() { return new GoogleMeetStatusResponse(); } }