revertStatus method

Future<DynamiteResponse<UserStatusRevertStatusResponseApplicationJson, void>> revertStatus({
  1. required String messageId,
  2. bool? oCSAPIRequest,
})

Revert the status to the previous status.

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:

  • messageId ID of the message to delete.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Status reverted

See:

Implementation

Future<_i1.DynamiteResponse<UserStatusRevertStatusResponseApplicationJson, void>> revertStatus({
  required String messageId,
  bool? oCSAPIRequest,
}) async {
  final _request = $revertStatus_Request(
    messageId: messageId,
    oCSAPIRequest: oCSAPIRequest,
  );
  final _streamedResponse = await _rootClient.httpClient.send(_request);
  final _response = await _i3.Response.fromStream(_streamedResponse);

  final _serializer = $revertStatus_Serializer();
  return _i1.ResponseConverter<UserStatusRevertStatusResponseApplicationJson, void>(_serializer).convert(_response);
}