v1DubbingResourceDubbingIdTranscribePost method
Future<Response<SegmentTranscriptionResponse> >
v1DubbingResourceDubbingIdTranscribePost({
- required String? dubbingId,
- String? xiApiKey,
- required BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost? body,
Transcribes Segments @param dubbing_id ID of the dubbing project. @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<SegmentTranscriptionResponse>>
v1DubbingResourceDubbingIdTranscribePost({
required String? dubbingId,
String? xiApiKey,
required BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost?
body,
}) {
generatedMapping.putIfAbsent(
SegmentTranscriptionResponse,
() => SegmentTranscriptionResponse.fromJsonFactory,
);
return _v1DubbingResourceDubbingIdTranscribePost(
dubbingId: dubbingId,
xiApiKey: xiApiKey?.toString(),
body: body,
);
}