v1VoicesPvcVoiceIdCaptchaPost method
Future<Response<VerifyPVCVoiceCaptchaResponseModel> >
v1VoicesPvcVoiceIdCaptchaPost({
- required String? voiceId,
- String? xiApiKey,
- required BodyVerifyPVCVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost body,
Verify Pvc Voice Captcha @param voice_id Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. @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<VerifyPVCVoiceCaptchaResponseModel>>
v1VoicesPvcVoiceIdCaptchaPost({
required String? voiceId,
String? xiApiKey,
required BodyVerifyPVCVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost body,
}) {
generatedMapping.putIfAbsent(
VerifyPVCVoiceCaptchaResponseModel,
() => VerifyPVCVoiceCaptchaResponseModel.fromJsonFactory,
);
return _v1VoicesPvcVoiceIdCaptchaPost(
voiceId: voiceId,
xiApiKey: xiApiKey?.toString(),
body: body,
);
}