/**
 * Slack Node - Version 1
 * Discriminator: resource=user, operation=getPresence
 */


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

/** Get online status of a user */
export type SlackV1UserGetPresenceParams = {
  resource: 'user';
  operation: 'getPresence';
  authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
/**
 * The ID of the user to get the online status of
 */
    user?: string | Expression<string>;
};

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