All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.autotec.sdk.model.HistoryRequest 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.autotec.sdk.model.VehicleRequestAttribute;
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;

/**
 * HistoryRequest
 */

public class HistoryRequest {
  @SerializedName("vehicleRequestAttributes")
  private java.util.List vehicleRequestAttributes = null;

  public HistoryRequest vehicleRequestAttributes(java.util.List vehicleRequestAttributes) {
    this.vehicleRequestAttributes = vehicleRequestAttributes;
    return this;
  }

  public HistoryRequest addVehicleRequestAttributesItem(VehicleRequestAttribute vehicleRequestAttributesItem) {
    if (this.vehicleRequestAttributes == null) {
      this.vehicleRequestAttributes = new java.util.ArrayList<>();
    }
    this.vehicleRequestAttributes.add(vehicleRequestAttributesItem);
    return this;
  }

   /**
   * the list of vehicle identification numbers
   * @return vehicleRequestAttributes
  **/
  @ApiModelProperty(value = "the list of vehicle identification numbers")
  public java.util.List getVehicleRequestAttributes() {
    return vehicleRequestAttributes;
  }

  public void setVehicleRequestAttributes(java.util.List vehicleRequestAttributes) {
    this.vehicleRequestAttributes = vehicleRequestAttributes;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    HistoryRequest historyRequest = (HistoryRequest) o;
    return Objects.equals(this.vehicleRequestAttributes, historyRequest.vehicleRequestAttributes);
  }

  @Override
  public int hashCode() {
    return Objects.hash(vehicleRequestAttributes);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class HistoryRequest {\n");
    
    sb.append("    vehicleRequestAttributes: ").append(toIndentedString(vehicleRequestAttributes)).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    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy