com.imiconnect.connect.voice.engine.azure.AzureVoice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
The newest version!
package com.imiconnect.connect.voice.engine.azure;
import com.imiconnect.connect.voice.engine.Voice;
import lombok.Builder;
import lombok.Value;
/** Implementation of voice that is specific to Azure's text to speech engine. */
@Value
@Builder(builderClassName = "Builder")
public final class AzureVoice implements Voice {
private final Engine engine = Engine.AZURE;
private final String style = "NEURAL";
private final Gender gender;
private final String voice;
private final String language;
/** Fluent BUILDER for the AzureVoice. */
public static class Builder {}
}