Interface CreateStatusParamsBase

interface CreateStatusParamsBase {
    allowedMentions?: null | readonly string[];
    inReplyToId?: null | string;
    language?: null | string;
    sensitive?: null | boolean;
    spoilerText?: null | string;
    visibility?: null | StatusVisibility;
}

Hierarchy (view full)

Properties

allowedMentions?: null | readonly string[]
inReplyToId?: null | string

ID of the status being replied to, if status is a reply

language?: null | string

ISO 639 language code for this status.

sensitive?: null | boolean

Mark status and attached media as sensitive?

spoilerText?: null | string

Text to be shown as a warning or subject before the actual content. Statuses are generally collapsed behind this field.

visibility?: null | StatusVisibility

Visibility of the posted status. Enumerable oneOf public, unlisted, private, direct.