Interface ReplyOperationOptions

interface ReplyOperationOptions {
    app?: string;
    author: string;
    body: string;
    extra?: CommentMetadata;
    format?: string;
    maxTags?: number;
    parentAuthor: string;
    parentPermlink: string;
    permlink?: string;
    permlinkSuffix?: string;
    tags?: string[];
}

Hierarchy (view full)

Properties

app?: string
author: string
body: string

Additional metadata fields. App/format/tags are SDK-owned and override colliding extra keys.

format?: string
maxTags?: number

Maximum number of tags to preserve. Defaults to the broad Blurt ecosystem convention of eight tags.

parentAuthor: string
parentPermlink: string
permlink?: string
permlinkSuffix?: string
tags?: string[]