v1VoicesPvcVoiceIdSamplesSampleIdSpeakersGet method
Retrieve Speaker Separation Status @param voice_id Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. @param sample_id Sample ID to be used @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<SpeakerSeparationResponseModel>>
v1VoicesPvcVoiceIdSamplesSampleIdSpeakersGet({
required String? voiceId,
required String? sampleId,
String? xiApiKey,
}) {
generatedMapping.putIfAbsent(
SpeakerSeparationResponseModel,
() => SpeakerSeparationResponseModel.fromJsonFactory,
);
return _v1VoicesPvcVoiceIdSamplesSampleIdSpeakersGet(
voiceId: voiceId,
sampleId: sampleId,
xiApiKey: xiApiKey?.toString(),
);
}