# `Hunter.ScheduledStatus`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/scheduled_status.ex#L1)

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

# `t`

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
