com.github.aqiu202.api.tts.param.TtsMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tts-api Show documentation
Show all versions of tts-api Show documentation
A TTS Standards API for Java
package com.github.aqiu202.api.tts.param;
/**
* TTS语音合成过程中信号状态信息体
* 存储TTS语音合成过程中产生的所有状态描述信息
* @author aqiu 2020/2/19 10:48 上午
**/
public interface TtsMessage {
String getTaskId();
int getStatus();
String getStatusText();
String getMessage();
}