All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.dashscope.audio.ttsv2.SpeechSynthesisState Maven / Gradle / Ivy

The newest version!
package com.alibaba.dashscope.audio.ttsv2;

public enum SpeechSynthesisState {
  IDLE("idle"),
  TTS_STARTED("stream_input_tts_started"),
  ;
  private final String value;

  private SpeechSynthesisState(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy