Collection entity
A curated collection of accounts
Fields
id- the ID of the collectionaccount_id- the ID of the account that created the collectionuri- the ActivityPub URI of the collectionurl- a web URL for the collection, if anyname- the name of the collectiondescription- HTML description of the collectionlanguage- the language of the collection, if setlocal- whether the collection originates from this instancesensitive- whether the collection is marked as sensitivediscoverable- whether the collection has opted into discovery featurestag- the tag associated with the collection, if anycreated_at- when the collection was createdupdated_at- when the collection was last updateditem_count- number of items in the collectionitems- list ofHunter.Collection.Item
Summary
Types
@type t() :: %Hunter.Collection{ account_id: String.t(), created_at: String.t(), description: String.t(), discoverable: boolean(), id: String.t(), item_count: non_neg_integer(), items: [Hunter.Collection.Item.t()], language: String.t() | nil, local: boolean(), name: String.t(), sensitive: boolean(), tag: map() | nil, updated_at: String.t(), uri: String.t(), url: String.t() | nil }