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

dev.vality.swag.payments.model.InternationalLegalEntity Maven / Gradle / Ivy

There is a newer version: 1.650-5dc6d9f-server
Show newest version
/*
 * Vality Payments API
 *  ## Описание  Vality Payments API предназначен для мерчантов, принимающих платежи из своего пользовательского интерфейса, например веб-сайта или мобильного приложения, и является единственной точкой взаимодействия с системой для проведения операций оплаты товаров и услуг.  ## Детали взаимодействия  При любом обращении к API в заголовке `X-Request-ID` соответствующего запроса необходимо передать его уникальный идентификатор:  ```  X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ```  ### Тип содержимого и кодировка  Система принимает и возвращает данные в формате JSON и кодировке UTF-8:  ```   Content-Type: application/json; charset=utf-8 ```  ### Формат дат  Система принимает и возвращает значения отметок времени в формате `date-time`, описанном в [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339):  ```   2017-01-01T00:00:00Z   2017-01-01T00:00:01+00:00 ```  ### Максимальное время обработки запроса  При любом обращении к API в заголовке `X-Request-Deadline` соответствующего запроса можно передать параметр отсечки по времени, определяющий максимальное время ожидания завершения операции по запросу:  ```  X-Request-Deadline: 10s ```  По истечении указанного времени система прекращает обработку запроса. Рекомендуется указывать значение не более одной минуты, но не менее трёх секунд.  `X-Request-Deadline` может:  * задаваться в формате `date-time` согласно   [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * задаваться в относительных величинах: в миллисекундах (`150000ms`), секундах (`540s`) или   минутах (`3.5m`). 
 *
 * OpenAPI spec version: 2.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 dev.vality.swag.payments.model;

import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import dev.vality.swag.payments.model.LegalEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

/**
 * Международное юридическое лицо
 */
@ApiModel(description = "Международное юридическое лицо")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-08-22T08:18:24.176Z")
public class InternationalLegalEntity extends LegalEntity {
  @JsonProperty("legalName")
  private String legalName = null;

  @JsonProperty("tradingName")
  private String tradingName = null;

  @JsonProperty("registeredOffice")
  private String registeredOffice = null;

  @JsonProperty("principalPlaceOfBusiness")
  private String principalPlaceOfBusiness = null;

  @JsonProperty("registeredNumber")
  private String registeredNumber = null;

  @JsonProperty("country")
  private String country = null;

  public InternationalLegalEntity legalName(String legalName) {
    this.legalName = legalName;
    return this;
  }

   /**
   * Наименование
   * @return legalName
  **/
  @ApiModelProperty(required = true, value = "Наименование")
  public String getLegalName() {
    return legalName;
  }

  public void setLegalName(String legalName) {
    this.legalName = legalName;
  }

  public InternationalLegalEntity tradingName(String tradingName) {
    this.tradingName = tradingName;
    return this;
  }

   /**
   * Торговое наименование (если применимо)
   * @return tradingName
  **/
  @ApiModelProperty(value = "Торговое наименование (если применимо)")
  public String getTradingName() {
    return tradingName;
  }

  public void setTradingName(String tradingName) {
    this.tradingName = tradingName;
  }

  public InternationalLegalEntity registeredOffice(String registeredOffice) {
    this.registeredOffice = registeredOffice;
    return this;
  }

   /**
   * Адрес места регистрации
   * @return registeredOffice
  **/
  @ApiModelProperty(required = true, value = "Адрес места регистрации")
  public String getRegisteredOffice() {
    return registeredOffice;
  }

  public void setRegisteredOffice(String registeredOffice) {
    this.registeredOffice = registeredOffice;
  }

  public InternationalLegalEntity principalPlaceOfBusiness(String principalPlaceOfBusiness) {
    this.principalPlaceOfBusiness = principalPlaceOfBusiness;
    return this;
  }

   /**
   * Адрес места нахождения (если отличается от регистрации)
   * @return principalPlaceOfBusiness
  **/
  @ApiModelProperty(value = "Адрес места нахождения (если отличается от регистрации)")
  public String getPrincipalPlaceOfBusiness() {
    return principalPlaceOfBusiness;
  }

  public void setPrincipalPlaceOfBusiness(String principalPlaceOfBusiness) {
    this.principalPlaceOfBusiness = principalPlaceOfBusiness;
  }

  public InternationalLegalEntity registeredNumber(String registeredNumber) {
    this.registeredNumber = registeredNumber;
    return this;
  }

   /**
   * Регистрационный номер
   * @return registeredNumber
  **/
  @ApiModelProperty(value = "Регистрационный номер")
  public String getRegisteredNumber() {
    return registeredNumber;
  }

  public void setRegisteredNumber(String registeredNumber) {
    this.registeredNumber = registeredNumber;
  }

  public InternationalLegalEntity country(String country) {
    this.country = country;
    return this;
  }

   /**
   * Alpha-3 код страны по стандарту [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1)
   * @return country
  **/
  @ApiModelProperty(example = "RUS", value = "Alpha-3 код страны по стандарту [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1)")
  public String getCountry() {
    return country;
  }

  public void setCountry(String country) {
    this.country = country;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    InternationalLegalEntity internationalLegalEntity = (InternationalLegalEntity) o;
    return Objects.equals(this.legalName, internationalLegalEntity.legalName) &&
        Objects.equals(this.tradingName, internationalLegalEntity.tradingName) &&
        Objects.equals(this.registeredOffice, internationalLegalEntity.registeredOffice) &&
        Objects.equals(this.principalPlaceOfBusiness, internationalLegalEntity.principalPlaceOfBusiness) &&
        Objects.equals(this.registeredNumber, internationalLegalEntity.registeredNumber) &&
        Objects.equals(this.country, internationalLegalEntity.country) &&
        super.equals(o);
  }

  @Override
  public int hashCode() {
    return Objects.hash(legalName, tradingName, registeredOffice, principalPlaceOfBusiness, registeredNumber, country, super.hashCode());
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class InternationalLegalEntity {\n");
    sb.append("    ").append(toIndentedString(super.toString())).append("\n");
    sb.append("    legalName: ").append(toIndentedString(legalName)).append("\n");
    sb.append("    tradingName: ").append(toIndentedString(tradingName)).append("\n");
    sb.append("    registeredOffice: ").append(toIndentedString(registeredOffice)).append("\n");
    sb.append("    principalPlaceOfBusiness: ").append(toIndentedString(principalPlaceOfBusiness)).append("\n");
    sb.append("    registeredNumber: ").append(toIndentedString(registeredNumber)).append("\n");
    sb.append("    country: ").append(toIndentedString(country)).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