v1DubbingDubbingIdGet method

Future<Response<DubbingMetadataResponse>> v1DubbingDubbingIdGet({
  1. required String? dubbingId,
  2. String? xiApiKey,
})

Get Dubbing @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<DubbingMetadataResponse>> v1DubbingDubbingIdGet({
  required String? dubbingId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    DubbingMetadataResponse,
    () => DubbingMetadataResponse.fromJsonFactory,
  );

  return _v1DubbingDubbingIdGet(
    dubbingId: dubbingId,
    xiApiKey: xiApiKey?.toString(),
  );
}