com.autotec.sdk.model.VehicleRiskRequestAttribute Maven / Gradle / Ivy
The newest version!
/*
* AutoTec Services API
* API for methods pertaining to all AutoTec services
*
* OpenAPI spec version: 1.0.6
*
*
* 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 com.autotec.sdk.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;
import java.time.LocalDate;
/**
* VehicleRiskRequestAttribute
*/
public class VehicleRiskRequestAttribute {
@SerializedName("effectiveEndDate")
private LocalDate effectiveEndDate = null;
@SerializedName("referenceNumber")
private String referenceNumber = null;
@SerializedName("vin")
private String vin = null;
public VehicleRiskRequestAttribute effectiveEndDate(LocalDate effectiveEndDate) {
this.effectiveEndDate = effectiveEndDate;
return this;
}
/**
* the effective end date
* @return effectiveEndDate
**/
@ApiModelProperty(value = "the effective end date")
public LocalDate getEffectiveEndDate() {
return effectiveEndDate;
}
public void setEffectiveEndDate(LocalDate effectiveEndDate) {
this.effectiveEndDate = effectiveEndDate;
}
public VehicleRiskRequestAttribute referenceNumber(String referenceNumber) {
this.referenceNumber = referenceNumber;
return this;
}
/**
* the reference number for the caller's tracking purposes
* @return referenceNumber
**/
@ApiModelProperty(value = "the reference number for the caller's tracking purposes")
public String getReferenceNumber() {
return referenceNumber;
}
public void setReferenceNumber(String referenceNumber) {
this.referenceNumber = referenceNumber;
}
public VehicleRiskRequestAttribute vin(String vin) {
this.vin = vin;
return this;
}
/**
* the vehicle identification number
* @return vin
**/
@ApiModelProperty(required = true, value = "the vehicle identification number")
public String getVin() {
return vin;
}
public void setVin(String vin) {
this.vin = vin;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VehicleRiskRequestAttribute vehicleRiskRequestAttribute = (VehicleRiskRequestAttribute) o;
return Objects.equals(this.effectiveEndDate, vehicleRiskRequestAttribute.effectiveEndDate) &&
Objects.equals(this.referenceNumber, vehicleRiskRequestAttribute.referenceNumber) &&
Objects.equals(this.vin, vehicleRiskRequestAttribute.vin);
}
@Override
public int hashCode() {
return Objects.hash(effectiveEndDate, referenceNumber, vin);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VehicleRiskRequestAttribute {\n");
sb.append(" effectiveEndDate: ").append(toIndentedString(effectiveEndDate)).append("\n");
sb.append(" referenceNumber: ").append(toIndentedString(referenceNumber)).append("\n");
sb.append(" vin: ").append(toIndentedString(vin)).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 ");
}
}