com.precisely.apis.model.FireShed Maven / Gradle / Ivy
/*
* Precisely APIs
* Enhance & enrich your data, applications, business processes, and workflows with rich location, information, and identify APIs.
*
* The version of the OpenAPI document: 15.0.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 com.precisely.apis.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 com.precisely.apis.model.CommonGeometry;
import com.precisely.apis.model.Risk;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* FireShed
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-04-12T11:12:38.208312800+05:30[Asia/Calcutta]")
public class FireShed {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private Integer id;
public static final String SERIALIZED_NAME_RISK = "risk";
@SerializedName(SERIALIZED_NAME_RISK)
private Risk risk;
public static final String SERIALIZED_NAME_GEOMETRY = "geometry";
@SerializedName(SERIALIZED_NAME_GEOMETRY)
private CommonGeometry geometry;
public FireShed() {
}
public FireShed id(Integer id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public FireShed risk(Risk risk) {
this.risk = risk;
return this;
}
/**
* Get risk
* @return risk
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Risk getRisk() {
return risk;
}
public void setRisk(Risk risk) {
this.risk = risk;
}
public FireShed geometry(CommonGeometry geometry) {
this.geometry = geometry;
return this;
}
/**
* Get geometry
* @return geometry
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CommonGeometry getGeometry() {
return geometry;
}
public void setGeometry(CommonGeometry geometry) {
this.geometry = geometry;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FireShed fireShed = (FireShed) o;
return Objects.equals(this.id, fireShed.id) &&
Objects.equals(this.risk, fireShed.risk) &&
Objects.equals(this.geometry, fireShed.geometry);
}
@Override
public int hashCode() {
return Objects.hash(id, risk, geometry);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FireShed {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" risk: ").append(toIndentedString(risk)).append("\n");
sb.append(" geometry: ").append(toIndentedString(geometry)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}