v1StudioProjectsProjectIdPost method

Future<Response<EditProjectResponseModel>> v1StudioProjectsProjectIdPost({
  1. required String? projectId,
  2. String? xiApiKey,
  3. required BodyUpdateStudioProjectV1StudioProjectsProjectIdPost? body,
})

Update Studio Project @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

Future<chopper.Response<EditProjectResponseModel>>
v1StudioProjectsProjectIdPost({
  required String? projectId,
  String? xiApiKey,
  required BodyUpdateStudioProjectV1StudioProjectsProjectIdPost? body,
}) {
  generatedMapping.putIfAbsent(
    EditProjectResponseModel,
    () => EditProjectResponseModel.fromJsonFactory,
  );

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