/** * Microsoft Teams Node - Version 1.1 * Discriminator: resource=channel, operation=update */ interface Credentials { microsoftTeamsOAuth2Api: CredentialReference; } /** Update a channel */ export type MicrosoftTeamsV11ChannelUpdateParams = { resource: 'channel'; operation: 'update'; /** * 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; /** * Update Fields * @default {} */ updateFields?: { /** Channel name as it will appear to the user in Microsoft Teams */ name?: string | Expression | PlaceholderValue; /** Channel's description */ description?: string | Expression | PlaceholderValue; }; }; export type MicrosoftTeamsV11ChannelUpdateNode = { type: 'n8n-nodes-base.microsoftTeams'; version: 1.1; credentials?: Credentials; config: NodeConfig; };