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

com.autocheckinsurance.sdk.model.RiskCalculationPlusResponse Maven / Gradle / Ivy

The newest version!
/*
 * ACI Services API
 * API for methods pertaining to all ACI services
 *
 * OpenAPI spec version: 3.0.2
 * 
 *
 * 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.autocheckinsurance.sdk.model;

import java.util.Objects;
import java.util.Arrays;
import com.autocheckinsurance.sdk.model.HistoryResponse;
import com.autocheckinsurance.sdk.model.RiskCalculationResponse;
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;

/**
 * RiskCalculationPlusResponse
 */

public class RiskCalculationPlusResponse {
  @SerializedName("historyResponse")
  private HistoryResponse historyResponse = null;

  @SerializedName("riskResponse")
  private RiskCalculationResponse riskResponse = null;

  public RiskCalculationPlusResponse historyResponse(HistoryResponse historyResponse) {
    this.historyResponse = historyResponse;
    return this;
  }

   /**
   * Get historyResponse
   * @return historyResponse
  **/
  @ApiModelProperty(value = "")
  public HistoryResponse getHistoryResponse() {
    return historyResponse;
  }

  public void setHistoryResponse(HistoryResponse historyResponse) {
    this.historyResponse = historyResponse;
  }

  public RiskCalculationPlusResponse riskResponse(RiskCalculationResponse riskResponse) {
    this.riskResponse = riskResponse;
    return this;
  }

   /**
   * Get riskResponse
   * @return riskResponse
  **/
  @ApiModelProperty(value = "")
  public RiskCalculationResponse getRiskResponse() {
    return riskResponse;
  }

  public void setRiskResponse(RiskCalculationResponse riskResponse) {
    this.riskResponse = riskResponse;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RiskCalculationPlusResponse riskCalculationPlusResponse = (RiskCalculationPlusResponse) o;
    return Objects.equals(this.historyResponse, riskCalculationPlusResponse.historyResponse) &&
        Objects.equals(this.riskResponse, riskCalculationPlusResponse.riskResponse);
  }

  @Override
  public int hashCode() {
    return Objects.hash(historyResponse, riskResponse);
  }


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