v1VoicesPvcPost method
Future<Response<AddVoiceResponseModel> >
v1VoicesPvcPost({
- String? xiApiKey,
- required BodyCreatePVCVoiceV1VoicesPvcPost? body,
Create Pvc Voice @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<AddVoiceResponseModel>> v1VoicesPvcPost({
String? xiApiKey,
required BodyCreatePVCVoiceV1VoicesPvcPost? body,
}) {
generatedMapping.putIfAbsent(
AddVoiceResponseModel,
() => AddVoiceResponseModel.fromJsonFactory,
);
return _v1VoicesPvcPost(xiApiKey: xiApiKey?.toString(), body: body);
}