v1ProjectsAddPost method

  1. @deprecated
Future<Response<AddProjectResponseModel>> v1ProjectsAddPost({
  1. String? xiApiKey,
  2. required BodyAddProjectV1ProjectsAddPost body,
})

Add Project @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

@deprecated
Future<chopper.Response<AddProjectResponseModel>> v1ProjectsAddPost({
  String? xiApiKey,
  required BodyAddProjectV1ProjectsAddPost body,
}) {
  generatedMapping.putIfAbsent(
    AddProjectResponseModel,
    () => AddProjectResponseModel.fromJsonFactory,
  );

  return _v1ProjectsAddPost(xiApiKey: xiApiKey?.toString(), body: body);
}