v1ConvaiBatchCallingWorkspaceGet method
Get All Batch Calls For A Workspace. @param limit @param last_doc @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<WorkspaceBatchCallsResponse>>
v1ConvaiBatchCallingWorkspaceGet({
int? limit,
String? lastDoc,
String? xiApiKey,
}) {
generatedMapping.putIfAbsent(
WorkspaceBatchCallsResponse,
() => WorkspaceBatchCallsResponse.fromJsonFactory,
);
return _v1ConvaiBatchCallingWorkspaceGet(
limit: limit,
lastDoc: lastDoc,
xiApiKey: xiApiKey?.toString(),
);
}