v1AudioNativeProjectIdContentPost method

Future<Response<AudioNativeEditContentResponseModel>> v1AudioNativeProjectIdContentPost({
  1. required String? projectId,
  2. String? xiApiKey,
  3. required BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost body,
})

Update Audio-Native Project Content @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<AudioNativeEditContentResponseModel>>
v1AudioNativeProjectIdContentPost({
  required String? projectId,
  String? xiApiKey,
  required BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost
  body,
}) {
  generatedMapping.putIfAbsent(
    AudioNativeEditContentResponseModel,
    () => AudioNativeEditContentResponseModel.fromJsonFactory,
  );

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