Hunter.Collection.Item (hunter v0.7.0)

Copy Markdown View Source

Collection item entity

An account featured in a Hunter.Collection

Fields

  • id - the ID of the collection item
  • account_id - the ID of the account this item represents
  • state - consent state of the item, one of: pending, accepted, rejected, revoked
  • created_at - when the item was added to the collection

Summary

Types

t()

@type t() :: %Hunter.Collection.Item{
  account_id: String.t() | nil,
  created_at: String.t(),
  id: String.t(),
  state: String.t()
}