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

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

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


public class EnrollmentStatus {
    /**
     * Quality of the enrollment.
     * Example: Average
     * Enum: Poor, Average, Good, High
     */
    public String enrollmentQuality;
    /**
     * Status of the enrollment.
     * Required
     * Example: true
     */
    public Boolean enrollmentComplete;
    /**
     * Required
     * Example: JohnDoe
     */
    public String enrollmentId;
    /**
     * Total speech duration of the enrollment in seconds.
     * Format: float
     * Example: 20.1
     */
    public Double totalEnrollDuration;
    /**
     * Total duration of the enrollment in seconds.
     * Required
     * Format: float
     * Example: 30.5
     */
    public Double totalSpeechDuration;

    public EnrollmentStatus enrollmentQuality(String enrollmentQuality) {
        this.enrollmentQuality = enrollmentQuality;
        return this;
    }

    public EnrollmentStatus enrollmentComplete(Boolean enrollmentComplete) {
        this.enrollmentComplete = enrollmentComplete;
        return this;
    }

    public EnrollmentStatus enrollmentId(String enrollmentId) {
        this.enrollmentId = enrollmentId;
        return this;
    }

    public EnrollmentStatus totalEnrollDuration(Double totalEnrollDuration) {
        this.totalEnrollDuration = totalEnrollDuration;
        return this;
    }

    public EnrollmentStatus totalSpeechDuration(Double totalSpeechDuration) {
        this.totalSpeechDuration = totalSpeechDuration;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy