getObjectsSharedInRoom method
Future<DynamiteResponse<ChatGetObjectsSharedInRoomResponseApplicationJson, ChatChatGetObjectsSharedInRoomHeaders> >
getObjectsSharedInRoom({
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:
objectTypeType of the objects.lastKnownMessageIdID of the last known message. Defaults to0.limitMaximum number of objects. Defaults to100.apiVersionDefaults to"v1".tokenoCSAPIRequestRequired to be true for the API request to pass. Defaults totrue.
Status codes:
- 200: List of shared objects messages returned
See:
- $getObjectsSharedInRoom_Request for the request send by this method.
- $getObjectsSharedInRoom_Serializer for a converter to parse the
Responsefrom an executed request.
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);
}