![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.SummaryApiOutput Maven / Gradle / Ivy
package com.ringcentral.definitions;
public class SummaryApiOutput {
/**
* Enum: Success, Fail
*/
public String status;
/**
*
*/
public SummaryApiResponse response;
public SummaryApiOutput status(String status) {
this.status = status;
return this;
}
public SummaryApiOutput response(SummaryApiResponse response) {
this.response = response;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy