apiV1DiscussionChatChatSessionsGet method

Future<Response<ChatSessionResponseCollectionOf>> apiV1DiscussionChatChatSessionsGet({
  1. bool? isAssignee,
})

Retrieve chat sessions by assignee @param isAssignee

Implementation

Future<chopper.Response<ChatSessionResponseCollectionOf>>
    apiV1DiscussionChatChatSessionsGet({bool? isAssignee}) {
  generatedMapping.putIfAbsent(ChatSessionResponseCollectionOf,
      () => ChatSessionResponseCollectionOf.fromJsonFactory);

  return _apiV1DiscussionChatChatSessionsGet(isAssignee: isAssignee);
}