getReactions method
Future<DynamiteResponse<ReactionGetReactionsResponseApplicationJson, void> >
getReactions({
- required String token,
- required int messageId,
- String? reaction,
- ReactionGetReactionsApiVersion? apiVersion,
- bool? oCSAPIRequest,
Get a list of reactions for a message.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
reaction
Emoji to filter.apiVersion
Defaults to"v1"
.token
messageId
ID of the message.oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Reactions returned
- 404: Message or reaction not found
See:
- $getReactions_Request for the request send by this method.
- $getReactions_Serializer for a converter to parse the
Response
from an executed request.
Implementation
Future<_i1.DynamiteResponse<ReactionGetReactionsResponseApplicationJson, void>> getReactions({
required String token,
required int messageId,
String? reaction,
ReactionGetReactionsApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final _request = $getReactions_Request(
token: token,
messageId: messageId,
reaction: reaction,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
final _response = await _rootClient.httpClient.send(_request);
final _serializer = $getReactions_Serializer();
final _rawResponse =
await _i1.ResponseConverter<ReactionGetReactionsResponseApplicationJson, void>(_serializer).convert(_response);
return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}