com.moesif.api.models.GovernanceRulesResponseModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moesifapi Show documentation
Show all versions of moesifapi Show documentation
Java API Library for Moesif
The newest version!
package com.moesif.api.models;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonSetter;
import java.util.HashMap;
import java.util.Map;
public class GovernanceRulesResponseModel
implements java.io.Serializable {
private int status;
private Map headers = new HashMap();
private Object body;
/** GETTER
* Response status string
* @return the value
*/
@JsonGetter("status")
public int getStatus ( ) {
return this.status;
}
/** SETTER
* Response status string
* @param value the value to set
*/
@JsonSetter("status")
public void setStatus (int value) {
this.status = value;
}
/** GETTER
* Response headers map
* @return the value
*/
@JsonGetter("headers")
public Map getHeaders ( ) {
return this.headers;
}
/** SETTER
* Response headers map
* @param value the value to set
*/
@JsonSetter("headers")
public void setHeaders (Map value) {
this.headers = value;
}
/** GETTER
* Body as a JsValue
* @return the value
*/
@JsonGetter("body")
public Object getBody ( ) {
return this.body;
}
/** SETTER
* Body as a JsValue
* @param value the value to set
*/
@JsonSetter("body")
public void setBody (Object value) {
this.body = value;
}
}