setSessionState method

Future<DynamiteResponse<RoomSetSessionStateResponseApplicationJson, void>> setSessionState({
  1. required String token,
  2. required RoomSetSessionStateRequestApplicationJson $body,
  3. RoomSetSessionStateApiVersion? apiVersion,
  4. bool? oCSAPIRequest,
})

Set active state for a session.

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:

  • apiVersion Defaults to "v4".
  • token
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Session state set successfully
  • 400: The provided new state was invalid
  • 404: The participant did not have a session

See:

Implementation

Future<_i1.DynamiteResponse<RoomSetSessionStateResponseApplicationJson, void>> setSessionState({
  required String token,
  required RoomSetSessionStateRequestApplicationJson $body,
  RoomSetSessionStateApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final _request = $setSessionState_Request(
    token: token,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
    $body: $body,
  );
  final _streamedResponse = await _rootClient.httpClient.send(_request);
  final _response = await _i3.Response.fromStream(_streamedResponse);

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