/** * Slack Node - Version 1 * Discriminator: resource=channel, operation=get */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** Get information about a channel */ export type SlackV1ChannelGetParams = { resource: 'channel'; operation: 'get'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Channel ID to learn more about */ channelId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Include Num of Members * @default false */ includeNumMembers?: boolean | Expression; }; }; export type SlackV1ChannelGetNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };