PollAnswerVoterManager

export class PollAnswerVoterManager extends CachedManager<Snowflake, User, UserResolvable>
export class PollAnswerVoterManager extends CachedManager<Snowflake, User, UserResolvable>
Manages API methods for users who voted on a poll and stores their cache.
answer:PollAnswer
The poll answer that this manager belongs to
Readonly
cache:Collection<Key, Holds>
The cache of items for this manager.
Inherited from DataManager
Readonly
client:Client
The client that instantiated this Manager
Inherited from BaseManager
Readonly
holds:Constructable<Holds>
The data structure belonging to this manager.
Inherited from DataManager
fetch(options?):Promise<Collection<Snowflake, User>>
Fetches the users that voted on this poll answer. Resolves with a collection of users, mapped by their ids.
NameTypeOptionalDescription
optionsBaseFetchPollAnswerVotersOptionsYesOptions for fetching the users
resolve(idOrInstance):Holds
Resolves a data entry to a data Object.
Returns
An instance from this Manager
NameTypeOptionalDescription
idOrInstanceHoldsNoThe id or instance of something in this Manager
resolveId(idOrInstance):Key
Resolves a data entry to an instance id.
Returns
NameTypeOptionalDescription
idOrInstanceKey | HoldsNoThe id or instance of something in this Manager
valueOf():Collection<Key, Holds>