com.ibm.watson.text_to_speech.v1.model.MarkTiming Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-to-speech Show documentation
Show all versions of text-to-speech Show documentation
Java client library to use the IBM Text to Speech API
package com.ibm.watson.text_to_speech.v1.model;
import com.google.gson.annotations.JsonAdapter;
import com.ibm.cloud.sdk.core.service.model.GenericModel;
import com.ibm.watson.text_to_speech.v1.util.MarkTimingTypeAdapter;
@JsonAdapter(MarkTimingTypeAdapter.class)
public class MarkTiming extends GenericModel {
private String mark;
private Double time;
public String getMark() {
return mark;
}
public Double getTime() {
return time;
}
public void setMark(String mark) {
this.mark = mark;
}
public void setTime(Double time) {
this.time = time;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy