Relationship entity
This module defines a Hunter.Relationship struct.
Fields
id- target account idfollowing- whether the user is currently following the accountshowing_reblogs- whether boosts from this account are shown in the home timelinenotifying- whether the user has enabled notifications for this accountlanguages- which languages the user is following this account for, if anyfollowed_by- whether the user is currently being followed by the accountblocking- whether the user is currently blocking the accountblocked_by- whether the account is currently blocking the usermuting- whether the user is currently muting the accountmuting_notifications- whether the user is muting notifications from the accountmuting_expires_at- when the mute expires, if the mute is temporaryrequested- whether the user has requested to follow the accountrequested_by- whether the account has requested to follow the userdomain_blocking- whether the user is currently blocking the user's domainendorsed- whether the user is featuring the account on their profilenote- the user's private comment on the account
Summary
Types
@type t() :: %Hunter.Relationship{ blocked_by: boolean(), blocking: boolean(), domain_blocking: boolean(), endorsed: boolean(), followed_by: boolean(), following: boolean(), id: String.t(), languages: [String.t()] | nil, muting: boolean(), muting_expires_at: String.t() | nil, muting_notifications: boolean(), note: String.t(), notifying: boolean(), requested: boolean(), requested_by: boolean(), showing_reblogs: boolean() }