/**
 * Slack Node - Version 1
 * Discriminator: resource=reaction, operation=get
 */


interface Credentials {
  slackApi: CredentialReference;
  slackOAuth2Api: CredentialReference;
}

/** Get information about a channel */
export type SlackV1ReactionGetParams = {
  resource: 'reaction';
  operation: 'get';
  authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
/**
 * Channel containing the message. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;.
 */
    channelId?: string | Expression<string>;
/**
 * Timestamp of the message
 */
    timestamp?: string | Expression<string> | PlaceholderValue;
};

export type SlackV1ReactionGetNode = {
  type: 'n8n-nodes-base.slack';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<SlackV1ReactionGetParams>;
};