com.criteo.marketing.model.Tax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marketing.java-client Show documentation
Show all versions of marketing.java-client Show documentation
Criteo Marketing SDK for Java
/*
* Marketing API v.1.0
* IMPORTANT: This swagger links to Criteo production environment. Any test applied here will thus impact real campaigns.
*
* OpenAPI spec version: v.1.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.criteo.marketing.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;
/**
* Tax
*/
public class Tax {
public static final String SERIALIZED_NAME_COUNTRY = "country";
@SerializedName(SERIALIZED_NAME_COUNTRY)
private String country;
public static final String SERIALIZED_NAME_LOCATION_ID = "locationId";
@SerializedName(SERIALIZED_NAME_LOCATION_ID)
private Long locationId;
public static final String SERIALIZED_NAME_POSTAL_CODE = "postalCode";
@SerializedName(SERIALIZED_NAME_POSTAL_CODE)
private String postalCode;
public static final String SERIALIZED_NAME_RATE = "rate";
@SerializedName(SERIALIZED_NAME_RATE)
private Double rate;
public static final String SERIALIZED_NAME_REGION = "region";
@SerializedName(SERIALIZED_NAME_REGION)
private String region;
public static final String SERIALIZED_NAME_TAX_SHIP = "taxShip";
@SerializedName(SERIALIZED_NAME_TAX_SHIP)
private Boolean taxShip;
public Tax country(String country) {
this.country = country;
return this;
}
/**
* Get country
* @return country
**/
@ApiModelProperty(value = "")
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public Tax locationId(Long locationId) {
this.locationId = locationId;
return this;
}
/**
* Get locationId
* @return locationId
**/
@ApiModelProperty(value = "")
public Long getLocationId() {
return locationId;
}
public void setLocationId(Long locationId) {
this.locationId = locationId;
}
public Tax postalCode(String postalCode) {
this.postalCode = postalCode;
return this;
}
/**
* Get postalCode
* @return postalCode
**/
@ApiModelProperty(value = "")
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public Tax rate(Double rate) {
this.rate = rate;
return this;
}
/**
* Get rate
* @return rate
**/
@ApiModelProperty(value = "")
public Double getRate() {
return rate;
}
public void setRate(Double rate) {
this.rate = rate;
}
public Tax region(String region) {
this.region = region;
return this;
}
/**
* Get region
* @return region
**/
@ApiModelProperty(value = "")
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public Tax taxShip(Boolean taxShip) {
this.taxShip = taxShip;
return this;
}
/**
* Get taxShip
* @return taxShip
**/
@ApiModelProperty(value = "")
public Boolean getTaxShip() {
return taxShip;
}
public void setTaxShip(Boolean taxShip) {
this.taxShip = taxShip;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Tax tax = (Tax) o;
return Objects.equals(this.country, tax.country) &&
Objects.equals(this.locationId, tax.locationId) &&
Objects.equals(this.postalCode, tax.postalCode) &&
Objects.equals(this.rate, tax.rate) &&
Objects.equals(this.region, tax.region) &&
Objects.equals(this.taxShip, tax.taxShip);
}
@Override
public int hashCode() {
return Objects.hash(country, locationId, postalCode, rate, region, taxShip);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Tax {\n");
sb.append(" country: ").append(toIndentedString(country)).append("\n");
sb.append(" locationId: ").append(toIndentedString(locationId)).append("\n");
sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n");
sb.append(" rate: ").append(toIndentedString(rate)).append("\n");
sb.append(" region: ").append(toIndentedString(region)).append("\n");
sb.append(" taxShip: ").append(toIndentedString(taxShip)).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 ");
}
}