/**
 * Todoist Node - Version 2.1
 * Discriminator: resource=comment, operation=get
 */


interface Credentials {
  todoistApi: CredentialReference;
  todoistOAuth2Api: CredentialReference;
}

/** Comment resource */
export type TodoistV21CommentGetParams = {
  resource: 'comment';
  operation: 'get';
  authentication?: 'apiKey' | 'oAuth2' | Expression<string>;
/**
 * Comment ID
 */
    commentId?: string | Expression<string> | PlaceholderValue;
};

export type TodoistV21CommentGetNode = {
  type: 'n8n-nodes-base.todoist';
  version: 2.1;
  credentials?: Credentials;
  config: NodeConfig<TodoistV21CommentGetParams>;
};