copyWith method
Implementation
BodyUpdateStudioProjectV1StudioProjectsProjectIdPost copyWith(
{String? name,
String? defaultTitleVoiceId,
String? defaultParagraphVoiceId,
dynamic title,
dynamic author,
dynamic isbnNumber,
bool? volumeNormalization}) {
return BodyUpdateStudioProjectV1StudioProjectsProjectIdPost(
name: name ?? this.name,
defaultTitleVoiceId: defaultTitleVoiceId ?? this.defaultTitleVoiceId,
defaultParagraphVoiceId:
defaultParagraphVoiceId ?? this.defaultParagraphVoiceId,
title: title ?? this.title,
author: author ?? this.author,
isbnNumber: isbnNumber ?? this.isbnNumber,
volumeNormalization: volumeNormalization ?? this.volumeNormalization);
}