/** * Microsoft Teams Node - Version 1.1 * Discriminator: resource=channel, operation=delete */ interface Credentials { microsoftTeamsOAuth2Api: CredentialReference; } /** Delete a channel */ export type MicrosoftTeamsV11ChannelDeleteParams = { resource: 'channel'; operation: 'delete'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ teamId?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ channelId?: string | Expression; }; export type MicrosoftTeamsV11ChannelDeleteNode = { type: 'n8n-nodes-base.microsoftTeams'; version: 1.1; credentials?: Credentials; config: NodeConfig; };