mentions method
Future<DynamiteResponse<ChatMentionsResponseApplicationJson, void> >
mentions({
- required String search,
- required String token,
- int? limit,
- ChatMentionsIncludeStatus? includeStatus,
- ChatMentionsApiVersion? apiVersion,
- bool? oCSAPIRequest,
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
DynamiteRawResponsethat can be serialized.
Implementation
Future<_i1.DynamiteResponse<ChatMentionsResponseApplicationJson, void>> mentions({
required String search,
required String token,
int? limit,
ChatMentionsIncludeStatus? includeStatus,
ChatMentionsApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final rawResponse = mentionsRaw(
search: search,
token: token,
limit: limit,
includeStatus: includeStatus,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}