apiV1DiscussionChatMessagesPost method
Future<Response<ChatMessageResponse> >
apiV1DiscussionChatMessagesPost({
- required ChatMessageRequest? body,
Create a message by session id
Implementation
Future<chopper.Response<ChatMessageResponse>> apiV1DiscussionChatMessagesPost(
{required ChatMessageRequest? body}) {
generatedMapping.putIfAbsent(
ChatMessageResponse, () => ChatMessageResponse.fromJsonFactory);
return _apiV1DiscussionChatMessagesPost(body: body);
}