/* Options: Date: 2026-02-27 02:46:42 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: DisconnectGoogleMeet.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } export interface ICompany { CompanyId?: string; } // @Route("/google/meet/auth/{ResourceId}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") export class DisconnectGoogleMeet implements IReturnVoid, 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() {} }