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 tov1.tokenoCSAPIRequestRequired 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
DynamiteRawResponsethat can be serialized.
Implementation
Future<_i1.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;
}