/** * Reddit Node - Version 1 * Discriminator: resource=postComment, operation=reply */ interface Credentials { redditOAuth2Api: CredentialReference; } /** Write a reply to a comment in a post */ export type RedditV1PostCommentReplyParams = { resource: 'postComment'; operation: 'reply'; /** * ID of the comment to reply to. To be found in the comment URL: <code>www.reddit.com/r/[subreddit_name]/comments/[post_id]/[post_title]/[comment_id]</code> */ commentId?: string | Expression | PlaceholderValue; /** * Text of the reply. Markdown supported. */ replyText?: string | Expression | PlaceholderValue; }; export type RedditV1PostCommentReplyNode = { type: 'n8n-nodes-base.reddit'; version: 1; credentials?: Credentials; config: NodeConfig; };