v1ConvaiBatchCallingWorkspaceGet method

Future<Response<WorkspaceBatchCallsResponse>> v1ConvaiBatchCallingWorkspaceGet({
  1. int? limit,
  2. String? lastDoc,
  3. String? xiApiKey,
})

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(),
  );
}