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

Model.Riskv1exportcomplianceinquiriesOrderInformation Maven / Gradle / Ivy

There is a newer version: 0.0.72
Show newest version
/*
 * CyberSource Merged Spec
 * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
 *
 * OpenAPI spec version: 0.0.1
 * 
 *
 * 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 Model;

import java.util.Objects;
import java.util.Arrays;
import Model.Riskv1exportcomplianceinquiriesOrderInformationBillTo;
import Model.Riskv1exportcomplianceinquiriesOrderInformationLineItems;
import Model.Riskv1exportcomplianceinquiriesOrderInformationShipTo;
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.util.ArrayList;
import java.util.List;

/**
 * Riskv1exportcomplianceinquiriesOrderInformation
 */

public class Riskv1exportcomplianceinquiriesOrderInformation {
  @SerializedName("billTo")
  private Riskv1exportcomplianceinquiriesOrderInformationBillTo billTo = null;

  @SerializedName("shipTo")
  private Riskv1exportcomplianceinquiriesOrderInformationShipTo shipTo = null;

  @SerializedName("lineItems")
  private List lineItems = null;

  public Riskv1exportcomplianceinquiriesOrderInformation billTo(Riskv1exportcomplianceinquiriesOrderInformationBillTo billTo) {
    this.billTo = billTo;
    return this;
  }

   /**
   * Get billTo
   * @return billTo
  **/
  @ApiModelProperty(value = "")
  public Riskv1exportcomplianceinquiriesOrderInformationBillTo getBillTo() {
    return billTo;
  }

  public void setBillTo(Riskv1exportcomplianceinquiriesOrderInformationBillTo billTo) {
    this.billTo = billTo;
  }

  public Riskv1exportcomplianceinquiriesOrderInformation shipTo(Riskv1exportcomplianceinquiriesOrderInformationShipTo shipTo) {
    this.shipTo = shipTo;
    return this;
  }

   /**
   * Get shipTo
   * @return shipTo
  **/
  @ApiModelProperty(value = "")
  public Riskv1exportcomplianceinquiriesOrderInformationShipTo getShipTo() {
    return shipTo;
  }

  public void setShipTo(Riskv1exportcomplianceinquiriesOrderInformationShipTo shipTo) {
    this.shipTo = shipTo;
  }

  public Riskv1exportcomplianceinquiriesOrderInformation lineItems(List lineItems) {
    this.lineItems = lineItems;
    return this;
  }

  public Riskv1exportcomplianceinquiriesOrderInformation addLineItemsItem(Riskv1exportcomplianceinquiriesOrderInformationLineItems lineItemsItem) {
    if (this.lineItems == null) {
      this.lineItems = new ArrayList();
    }
    this.lineItems.add(lineItemsItem);
    return this;
  }

   /**
   * Get lineItems
   * @return lineItems
  **/
  @ApiModelProperty(value = "")
  public List getLineItems() {
    return lineItems;
  }

  public void setLineItems(List lineItems) {
    this.lineItems = lineItems;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Riskv1exportcomplianceinquiriesOrderInformation riskv1exportcomplianceinquiriesOrderInformation = (Riskv1exportcomplianceinquiriesOrderInformation) o;
    return Objects.equals(this.billTo, riskv1exportcomplianceinquiriesOrderInformation.billTo) &&
        Objects.equals(this.shipTo, riskv1exportcomplianceinquiriesOrderInformation.shipTo) &&
        Objects.equals(this.lineItems, riskv1exportcomplianceinquiriesOrderInformation.lineItems);
  }

  @Override
  public int hashCode() {
    return Objects.hash(billTo, shipTo, lineItems);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class Riskv1exportcomplianceinquiriesOrderInformation {\n");
    
    sb.append("    billTo: ").append(toIndentedString(billTo)).append("\n");
    sb.append("    shipTo: ").append(toIndentedString(shipTo)).append("\n");
    sb.append("    lineItems: ").append(toIndentedString(lineItems)).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 - 2025 Weber Informatics LLC | Privacy Policy