Hunter.ScheduledStatus (hunter v0.7.0)

Copy Markdown View Source

ScheduledStatus entity

A status that will be published at a future scheduled date

Fields

  • id - the ID of the scheduled status
  • scheduled_at - when the status will be published
  • params - the parameters that were used when scheduling the status, to be used when the status is posted (text, visibility, poll, media_ids, etc.)
  • media_attachments - list of Hunter.Attachment to be attached to the status when posted

Summary

Types

t()

@type t() :: %Hunter.ScheduledStatus{
  id: String.t(),
  media_attachments: [Hunter.Attachment.t()],
  params: map(),
  scheduled_at: String.t()
}