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

com.ringcentral.definitions.DiarizeSegment Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class DiarizeSegment {
    /**
     * Required
     * Example: JohnDoe
     */
    public String speakerId;
    /**
     * Required
     * Format: float
     * Example: 0.3
     */
    public Double start;
    /**
     * Required
     * Format: float
     * Example: 5.1
     */
    public Double end;
    /**
     * Format: float
     * Example: 0.97
     */
    public Double confidence;

    public DiarizeSegment speakerId(String speakerId) {
        this.speakerId = speakerId;
        return this;
    }

    public DiarizeSegment start(Double start) {
        this.start = start;
        return this;
    }

    public DiarizeSegment end(Double end) {
        this.end = end;
        return this;
    }

    public DiarizeSegment confidence(Double confidence) {
        this.confidence = confidence;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy