Interface StatusParams

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

Hierarchy

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

Properties

applicationId: string

ID of the application

id: string

ID of the status in the database.

inReplyToId?: null | string

ID of the status being replied.

mediaIds?: null | string[]

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: StatusVisibility

Visibility of this status.