/** * Mattermost Node - Version 1 * Discriminator: resource=reaction, operation=delete */ interface Credentials { mattermostApi: CredentialReference; } /** Soft delete a channel */ export type MattermostV1ReactionDeleteParams = { resource: 'reaction'; operation: 'delete'; /** * ID of the user whose reaction to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ userId?: string | Expression; /** * ID of the post whose reaction to delete. Obtainable from the post link: <code>https://mattermost.internal.n8n.io/[server]/pl/[postId]</code> */ postId?: string | Expression | PlaceholderValue; /** * Name of the emoji to delete */ emojiName?: string | Expression | PlaceholderValue; }; export type MattermostV1ReactionDeleteNode = { type: 'n8n-nodes-base.mattermost'; version: 1; credentials?: Credentials; config: NodeConfig; };