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

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

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


public class SpeakerIdentifyApiResponse {
    /**
     * Enum: Success, Fail
     */
    public String status;
    /**
     *
     */
    public SpeakerIdentifyApiResponseResponse response;

    public SpeakerIdentifyApiResponse status(String status) {
        this.status = status;
        return this;
    }

    public SpeakerIdentifyApiResponse response(SpeakerIdentifyApiResponseResponse response) {
        this.response = response;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy