org.openapitools.client.model.DeploymentResourceDto Maven / Gradle / Ivy
/*
* Camunda BPM REST API
* OpenApi Spec for Camunda BPM REST API.
*
* The version of the OpenAPI document: 7.13.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.openapitools.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A JSON object corresponding to the `Resource` interface in the engine. Its properties are as follows:
*/
@ApiModel(description = "A JSON object corresponding to the `Resource` interface in the engine. Its properties are as follows:")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-05-19T21:06:35.118+02:00[Europe/Berlin]")
public class DeploymentResourceDto {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_DEPLOYMENT_ID = "deploymentId";
@SerializedName(SERIALIZED_NAME_DEPLOYMENT_ID)
private String deploymentId;
public DeploymentResourceDto id(String id) {
this.id = id;
return this;
}
/**
* The id of the deployment resource.
* @return id
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The id of the deployment resource.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public DeploymentResourceDto name(String name) {
this.name = name;
return this;
}
/**
* The name of the deployment resource
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name of the deployment resource")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public DeploymentResourceDto deploymentId(String deploymentId) {
this.deploymentId = deploymentId;
return this;
}
/**
* The id of the deployment.
* @return deploymentId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The id of the deployment.")
public String getDeploymentId() {
return deploymentId;
}
public void setDeploymentId(String deploymentId) {
this.deploymentId = deploymentId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DeploymentResourceDto deploymentResourceDto = (DeploymentResourceDto) o;
return Objects.equals(this.id, deploymentResourceDto.id) &&
Objects.equals(this.name, deploymentResourceDto.name) &&
Objects.equals(this.deploymentId, deploymentResourceDto.deploymentId);
}
@Override
public int hashCode() {
return Objects.hash(id, name, deploymentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DeploymentResourceDto {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" deploymentId: ").append(toIndentedString(deploymentId)).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 ");
}
}