mentions method
Search for mentions.
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:
searchText to search for.limitMaximum number of results. Defaults to20.includeStatusInclude the user statuses. Defaults to0.apiVersionDefaults tov1.tokenoCSAPIRequestRequired to be true for the API request to pass. Defaults totrue.
Status codes:
- 200: List of mention suggestions returned
See:
- mentionsRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<ChatMentionsResponseApplicationJson, void>> mentions({
required String search,
required String token,
int? limit,
int? includeStatus,
ChatMentionsApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final rawResponse = mentionsRaw(
search: search,
token: token,
limit: limit,
includeStatus: includeStatus,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}