v1VoicesAddPost method

Future<Response<AddVoiceIVCResponseModel>> v1VoicesAddPost({
  1. String? xiApiKey,
  2. required BodyAddVoiceV1VoicesAddPost body,
})

Add Voice @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<AddVoiceIVCResponseModel>> v1VoicesAddPost({
  String? xiApiKey,
  required BodyAddVoiceV1VoicesAddPost body,
}) {
  generatedMapping.putIfAbsent(
    AddVoiceIVCResponseModel,
    () => AddVoiceIVCResponseModel.fromJsonFactory,
  );

  return _v1VoicesAddPost(xiApiKey: xiApiKey?.toString(), body: body);
}