v1DubbingDubbingIdAudioLanguageCodeGet method
Get Dubbed File @param dubbing_id ID of the dubbing project. @param language_code ID of the language. @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<String>> v1DubbingDubbingIdAudioLanguageCodeGet({
required String? dubbingId,
required String? languageCode,
String? xiApiKey,
}) {
return _v1DubbingDubbingIdAudioLanguageCodeGet(
dubbingId: dubbingId,
languageCode: languageCode,
xiApiKey: xiApiKey?.toString(),
);
}