v1ConvaiBatchCallingSubmitPost method
Future<Response<BatchCallResponse> >
v1ConvaiBatchCallingSubmitPost({
- String? xiApiKey,
- required BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost? body,
Submit A Batch Call Request. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Implementation
Future<chopper.Response<BatchCallResponse>> v1ConvaiBatchCallingSubmitPost({
String? xiApiKey,
required BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost? body,
}) {
generatedMapping.putIfAbsent(
BatchCallResponse,
() => BatchCallResponse.fromJsonFactory,
);
return _v1ConvaiBatchCallingSubmitPost(
xiApiKey: xiApiKey?.toString(),
body: body,
);
}