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

io.quarkiverse.apistax.models.VatVerificationPayload Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * APIstax
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.1
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package io.quarkiverse.apistax.models;

import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * VatVerificationPayload
 */
@JsonPropertyOrder({
  VatVerificationPayload.JSON_PROPERTY_VAT_ID
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-07-29T13:29:23.813235Z[Etc/UTC]")
public class VatVerificationPayload {
  public static final String JSON_PROPERTY_VAT_ID = "vatId";
  private String vatId;

  public VatVerificationPayload() { 
  }

  public VatVerificationPayload vatId(String vatId) {
    this.vatId = vatId;
    return this;
  }

   /**
   * The VAT ID to check.
   * @return vatId
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "The VAT ID to check.")
  @JsonProperty(JSON_PROPERTY_VAT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getVatId() {
    return vatId;
  }


  @JsonProperty(JSON_PROPERTY_VAT_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setVatId(String vatId) {
    this.vatId = vatId;
  }


  /**
   * Return true if this VatVerificationPayload object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    VatVerificationPayload vatVerificationPayload = (VatVerificationPayload) o;
    return Objects.equals(this.vatId, vatVerificationPayload.vatId);
  }

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

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class VatVerificationPayload {\n");
    sb.append("    vatId: ").append(toIndentedString(vatId)).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(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy