v1ProjectsProjectIdGet method

  1. @deprecated
Future<Response<ProjectExtendedResponseModel>> v1ProjectsProjectIdGet({
  1. required String? projectId,
  2. String? xiApiKey,
})

Get Project By Id @param project_id The ID of the Studio 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<ProjectExtendedResponseModel>>
v1ProjectsProjectIdGet({required String? projectId, String? xiApiKey}) {
  generatedMapping.putIfAbsent(
    ProjectExtendedResponseModel,
    () => ProjectExtendedResponseModel.fromJsonFactory,
  );

  return _v1ProjectsProjectIdGet(
    projectId: projectId,
    xiApiKey: xiApiKey?.toString(),
  );
}