getObjectsSharedInRoom method

Future<DynamiteResponse<ChatGetObjectsSharedInRoomResponseApplicationJson, ChatChatGetObjectsSharedInRoomHeaders>> getObjectsSharedInRoom({
  1. required String objectType,
  2. required String token,
  3. int? lastKnownMessageId,
  4. int? limit,
  5. ChatGetObjectsSharedInRoomApiVersion? apiVersion,
  6. bool? oCSAPIRequest,
})

Get objects that are shared in the room.

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:

  • objectType Type of the objects.
  • lastKnownMessageId ID of the last known message. Defaults to 0.
  • limit Maximum number of objects. Defaults to 100.
  • apiVersion Defaults to "v1".
  • token
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: List of shared objects messages returned

See:

Implementation

Future<_i1.DynamiteResponse<ChatGetObjectsSharedInRoomResponseApplicationJson, ChatChatGetObjectsSharedInRoomHeaders>>
    getObjectsSharedInRoom({
  required String objectType,
  required String token,
  int? lastKnownMessageId,
  int? limit,
  ChatGetObjectsSharedInRoomApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final _request = $getObjectsSharedInRoom_Request(
    objectType: objectType,
    token: token,
    lastKnownMessageId: lastKnownMessageId,
    limit: limit,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
  );
  final _response = await _rootClient.httpClient.send(_request);

  final _serializer = $getObjectsSharedInRoom_Serializer();
  final _rawResponse = await _i1.ResponseConverter<ChatGetObjectsSharedInRoomResponseApplicationJson,
          ChatChatGetObjectsSharedInRoomHeaders>(_serializer)
      .convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}