interface CreateFooterCommentModel {
    attachmentId?: string;
    blogPostId?: string;
    body?: CommentBodyWrite | CommentNestedBodyWrite;
    customContentId?: string;
    pageId?: string;
    parentCommentId?: string;
}

Hierarchy

  • Record<string, unknown>
    • CreateFooterCommentModel

Properties

attachmentId?: string

ID of the attachment, if intending to create a comment against an attachment.

blogPostId?: string

ID of the containing blog post, if intending to create a top level footer comment. Do not provide if creating a reply.

customContentId?: string

ID of the custom content, if intending to create a comment against a custom content.

pageId?: string

ID of the containing page, if intending to create a top level footer comment. Do not provide if creating a reply.

parentCommentId?: string

ID of the parent comment, if intending to create a reply. Do not provide if creating a top level comment.