org.projectodd.openwhisk.model.ActivationResponse Maven / Gradle / Ivy
/*
* OpenWhisk REST API
* API for OpenWhisk
*
* OpenAPI spec version: 0.1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package org.projectodd.openwhisk.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* ActivationResponse
*/
public class ActivationResponse {
@JsonProperty("status")
private String status = null;
@JsonProperty("result")
private Object result = null;
@JsonProperty("success")
private Boolean success = null;
public ActivationResponse status(String status) {
this.status = status;
return this;
}
/**
* Exit status of the activation
* @return status
**/
@ApiModelProperty(value = "Exit status of the activation")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public ActivationResponse result(Object result) {
this.result = result;
return this;
}
/**
* The return value from the activation
* @return result
**/
@ApiModelProperty(value = "The return value from the activation")
public Object getResult() {
return result;
}
public void setResult(Object result) {
this.result = result;
}
public ActivationResponse success(Boolean success) {
this.success = success;
return this;
}
/**
* Overwrite item if it exists. Default is false.
* @return success
**/
@ApiModelProperty(value = "Overwrite item if it exists. Default is false.")
public Boolean isSuccess() {
return success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ActivationResponse activationResponse = (ActivationResponse) o;
return Objects.equals(this.status, activationResponse.status) &&
Objects.equals(this.result, activationResponse.result) &&
Objects.equals(this.success, activationResponse.success);
}
@Override
public int hashCode() {
return Objects.hash(status, result, success);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ActivationResponse {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" result: ").append(toIndentedString(result)).append("\n");
sb.append(" success: ").append(toIndentedString(success)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}