masto
    Preparing search index...

    Interface CreateStatusParamsBase

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

    Hierarchy (View Summary)

    Index

    Properties

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

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

    language?: string | null

    ISO 639 language code for this status.

    sensitive?: boolean | null

    Mark status and attached media as sensitive?

    spoilerText?: string | null

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

    visibility?: (keyof StatusVisibilityRegistry) | null

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