masto
    Preparing search index...

    Interface StatusParams

    interface StatusParams {
        applicationId: string;
        id: string;
        inReplyToId?: string | null;
        mediaIds?: string[] | null;
        sensitive: boolean;
        spoilerText: string;
        text: string;
        visibility: keyof StatusVisibilityRegistry;
    }

    Hierarchy

    • Pick<Status, "id" | "inReplyToId" | "sensitive" | "spoilerText" | "visibility">
      • StatusParams
    Index

    Properties

    applicationId: string

    ID of the application

    id: string

    ID of the status in the database.

    inReplyToId?: string | null

    ID of the status being replied.

    mediaIds?: string[] | null

    IDs of media attachments

    sensitive: boolean

    Is this status marked as sensitive content?

    spoilerText: string

    Subject or summary line, below which status content is collapsed until expanded.

    text: string

    Content of the status

    visibility: keyof StatusVisibilityRegistry

    Visibility of this status.