v1DubbingDubbingIdDelete method

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

Delete 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<DeleteDubbingResponseModel>>
v1DubbingDubbingIdDelete({required String? dubbingId, String? xiApiKey}) {
  generatedMapping.putIfAbsent(
    DeleteDubbingResponseModel,
    () => DeleteDubbingResponseModel.fromJsonFactory,
  );

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