Type alias Status

Status: {
    account: Entity.Account;
    application: Application | null;
    bookmarked: boolean;
    card: Card | null;
    content: string;
    created_at: string;
    emoji_reactions: Reaction[];
    emojis: Emoji[];
    favourited: boolean | null;
    favourites_count: number;
    id: string;
    in_reply_to_account_id: string | null;
    in_reply_to_id: string | null;
    language: string | null;
    media_attachments: Attachment[];
    mentions: Entity.Mention[];
    muted: boolean | null;
    pinned: boolean | null;
    plain_content: string | null;
    poll: Poll | null;
    quote: boolean;
    reblog: Entity.Status | null;
    reblogged: boolean | null;
    reblogs_count: number;
    replies_count: number;
    sensitive: boolean;
    spoiler_text: string;
    tags: Tag[];
    uri: string;
    url: string;
    visibility: "public" | "unlisted" | "private" | "direct";
}

Type declaration

  • account: Entity.Account
  • application: Application | null
  • bookmarked: boolean
  • card: Card | null
  • content: string
  • created_at: string
  • emoji_reactions: Reaction[]
  • emojis: Emoji[]
  • favourited: boolean | null
  • favourites_count: number
  • id: string
  • in_reply_to_account_id: string | null
  • in_reply_to_id: string | null
  • language: string | null
  • media_attachments: Attachment[]
  • mentions: Entity.Mention[]
  • muted: boolean | null
  • pinned: boolean | null
  • plain_content: string | null
  • poll: Poll | null
  • quote: boolean
  • reblog: Entity.Status | null
  • reblogged: boolean | null
  • reblogs_count: number
  • replies_count: number
  • sensitive: boolean
  • spoiler_text: string
  • tags: Tag[]
  • uri: string
  • url: string
  • visibility: "public" | "unlisted" | "private" | "direct"

Generated using TypeDoc