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

com.tinypass.client.publisher.model.TaxCountry Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
package com.tinypass.client.publisher.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

public class TaxCountry {

  /* Name of the country */
  private String countryName = null;
  

  /* Code of the country */
  private String countryCode = null;
  

  /* Requires zip code */
  private Boolean requiresZipCode = null;
  

  /* Need residence */
  private Boolean needResidence = null;
  

  /* Include billing */
  private Boolean includeBilling = null;
  

  /* Caption of tax support */
  private String taxSupport = null;
  


  public String getCountryName() {
    return countryName;
  }
  public void setCountryName(String countryName) {
    this.countryName = countryName;
  }


  public String getCountryCode() {
    return countryCode;
  }
  public void setCountryCode(String countryCode) {
    this.countryCode = countryCode;
  }


  public Boolean getRequiresZipCode() {
    return requiresZipCode;
  }
  public void setRequiresZipCode(Boolean requiresZipCode) {
    this.requiresZipCode = requiresZipCode;
  }


  public Boolean getNeedResidence() {
    return needResidence;
  }
  public void setNeedResidence(Boolean needResidence) {
    this.needResidence = needResidence;
  }


  public Boolean getIncludeBilling() {
    return includeBilling;
  }
  public void setIncludeBilling(Boolean includeBilling) {
    this.includeBilling = includeBilling;
  }


  public String getTaxSupport() {
    return taxSupport;
  }
  public void setTaxSupport(String taxSupport) {
    this.taxSupport = taxSupport;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class TaxCountry {\n");
    sb.append("  countryName: ").append(countryName).append("\n");
    sb.append("  countryCode: ").append(countryCode).append("\n");
    sb.append("  requiresZipCode: ").append(requiresZipCode).append("\n");
    sb.append("  needResidence: ").append(needResidence).append("\n");
    sb.append("  includeBilling: ").append(includeBilling).append("\n");
    sb.append("  taxSupport: ").append(taxSupport).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy