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

com.ibm.watson.text_to_speech.v1.model.MarkTiming Maven / Gradle / Ivy

There is a newer version: 13.0.0
Show newest version
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