throw new IllegalArgumentException("the length of 'text' must be between 1 and 200.");
}
if (apiKey == null || apiKey.isEmpty()) {
throw new IllegalArgumentException("'apiKey' is required.");
}
VoiceTextFields fields = build().put("text", text);
return new VoiceTextUrlConnectionClient()
.execute(fields, apiKey);
}