apiV1DiscussionChatChatSessionsPost method

Future<Response<ChatSessionResponse>> apiV1DiscussionChatChatSessionsPost({
  1. required CreateChatSessionRequest? body,
})

Task owner can create chat sessions with a user

Implementation

Future<chopper.Response<ChatSessionResponse>>
    apiV1DiscussionChatChatSessionsPost(
        {required CreateChatSessionRequest? body}) {
  generatedMapping.putIfAbsent(
      ChatSessionResponse, () => ChatSessionResponse.fromJsonFactory);

  return _apiV1DiscussionChatChatSessionsPost(body: body);
}