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:
objectType
Type of the objects.lastKnownMessageId
ID of the last known message. Defaults to0
.limit
Maximum number of objects. Defaults to100
.apiVersion
Defaults tov1
.token
oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: List of shared objects messages returned
See:
- getObjectsSharedInRoomRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<ChatGetObjectsSharedInRoomResponseApplicationJson, ChatChatGetObjectsSharedInRoomHeaders>>
getObjectsSharedInRoom({
required String objectType,
required String token,
int? lastKnownMessageId,
int? limit,
ChatGetObjectsSharedInRoomApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final rawResponse = getObjectsSharedInRoomRaw(
objectType: objectType,
token: token,
lastKnownMessageId: lastKnownMessageId,
limit: limit,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}