UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

30 lines (26 loc) 766 B
/** * Microsoft Teams Node - Version 1.1 * Discriminator: resource=chatMessage, operation=get */ interface Credentials { microsoftTeamsOAuth2Api: CredentialReference; } /** Get a channel */ export type MicrosoftTeamsV11ChatMessageGetParams = { resource: 'chatMessage'; operation: 'get'; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ chatId?: string | Expression<string>; /** * Message ID */ messageId?: string | Expression<string> | PlaceholderValue; }; export type MicrosoftTeamsV11ChatMessageGetNode = { type: 'n8n-nodes-base.microsoftTeams'; version: 1.1; credentials?: Credentials; config: NodeConfig<MicrosoftTeamsV11ChatMessageGetParams>; };