@memberjunction/actions-bizapps-social
Version:
Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer
41 lines • 1.1 kB
TypeScript
import { FacebookBaseAction } from '../facebook-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
* Responds to comments on Facebook posts or other comments.
* Supports replying to top-level comments and nested replies.
*/
export declare class FacebookRespondToCommentsAction extends FacebookBaseAction {
/**
* Get action description
*/
get Description(): string;
/**
* Define the parameters for this action
*/
get Params(): ActionParam[];
/**
* Execute the action
*/
protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
/**
* Get comment details
*/
private getCommentDetails;
/**
* Reply to a comment
*/
private replyToComment;
/**
* Like a comment
*/
private likeCommentAction;
/**
* Hide or unhide a comment
*/
private hideCommentAction;
/**
* Delete a comment
*/
private deleteCommentAction;
}
//# sourceMappingURL=respond-to-comments.action.d.ts.map