Interface PostOperationOptions

interface PostOperationOptions {
    app?: string;
    author: string;
    body: string;
    extra?: CommentMetadata;
    format?: string;
    maxTags?: number;
    permlink?: string;
    permlinkSuffix?: string;
    tags: string[];
    title: 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.

permlink?: string
permlinkSuffix?: string
tags: string[]
title: string