/** * 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 <a href="https://docs.n8n.io/code/expressions/">expression</a> */ chatId?: string | Expression; /** * Message ID */ messageId?: string | Expression | PlaceholderValue; }; export type MicrosoftTeamsV11ChatMessageGetNode = { type: 'n8n-nodes-base.microsoftTeams'; version: 1.1; credentials?: Credentials; config: NodeConfig; };