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

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

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


public class PunctuateApiOutput {
    /**
     * Enum: Success, Fail
     */
    public String status;
    /**
     *
     */
    public PunctuateApiResponse response;

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

    public PunctuateApiOutput response(PunctuateApiResponse response) {
        this.response = response;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy