StatusEdit entity
A revision of a Hunter.Status, as returned by the status edit history
endpoint
Fields
content- the content of the status at this revision, as HTMLspoiler_text- the content of the subject/spoiler at this revision, as HTMLsensitive- whether the status was marked sensitive at this revisioncreated_at- when the revision was publishedaccount- theHunter.Accountthat published the statuspoll- the poll options at this revision, a map with anoptionskey (only when the status has a poll)media_attachments- list ofHunter.Attachmentat this revisionemojis- list ofHunter.Emoji, custom emoji used in the revision
Summary
Types
@type t() :: %Hunter.StatusEdit{ account: Hunter.Account.t(), content: String.t(), created_at: String.t(), emojis: [Hunter.Emoji.t()], media_attachments: [Hunter.Attachment.t()], poll: map() | nil, sensitive: boolean(), spoiler_text: String.t() }