/** * Google Workspace Admin Node - Version 1 * Discriminator: resource=group, operation=delete */ interface Credentials { gSuiteAdminOAuth2Api: CredentialReference; } /** Delete a group */ export type GSuiteAdminV1GroupDeleteParams = { resource: 'group'; operation: 'delete'; /** * Select the group to perform the operation on * @default {"mode":"list","value":""} */ groupId?: { __rl: true; mode: 'list' | 'GroupId'; value: string; cachedResultName?: string }; }; export type GSuiteAdminV1GroupDeleteNode = { type: 'n8n-nodes-base.gSuiteAdmin'; version: 1; credentials?: Credentials; config: NodeConfig; };