v1ProjectsProjectIdPost method

  1. @deprecated
Future<Response<EditProjectResponseModel>> v1ProjectsProjectIdPost({
  1. required String? projectId,
  2. String? xiApiKey,
  3. required BodyEditBasicProjectInfoV1ProjectsProjectIdPost? body,
})

Edit Basic Project Info @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<EditProjectResponseModel>> v1ProjectsProjectIdPost({
  required String? projectId,
  String? xiApiKey,
  required BodyEditBasicProjectInfoV1ProjectsProjectIdPost? body,
}) {
  generatedMapping.putIfAbsent(
    EditProjectResponseModel,
    () => EditProjectResponseModel.fromJsonFactory,
  );

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