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

dev.vality.swag.payments.model.RussianLegalEntity 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.BankAccount;
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 RussianLegalEntity extends LegalEntity {
  @JsonProperty("registeredName")
  private String registeredName = null;

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

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

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

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

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

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

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

  @JsonProperty("bankAccount")
  private BankAccount bankAccount = null;

  public RussianLegalEntity registeredName(String registeredName) {
    this.registeredName = registeredName;
    return this;
  }

   /**
   * Зарегистрированное наименование юридического лица 
   * @return registeredName
  **/
  @ApiModelProperty(required = true, value = "Зарегистрированное наименование юридического лица ")
  public String getRegisteredName() {
    return registeredName;
  }

  public void setRegisteredName(String registeredName) {
    this.registeredName = registeredName;
  }

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

   /**
   * Регистрационный номер, [ОГРН](https://ru.wikipedia.org/wiki/Основной_государственный_регистрационный_номер) или [ОГРНИП](https://ru.wikipedia.org/wiki/Основной_государственный_регистрационный_номер_индивидуального_предпринимателя) 
   * @return registeredNumber
  **/
  @ApiModelProperty(required = true, value = "Регистрационный номер, [ОГРН](https://ru.wikipedia.org/wiki/Основной_государственный_регистрационный_номер) или [ОГРНИП](https://ru.wikipedia.org/wiki/Основной_государственный_регистрационный_номер_индивидуального_предпринимателя) ")
  public String getRegisteredNumber() {
    return registeredNumber;
  }

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

  public RussianLegalEntity inn(String inn) {
    this.inn = inn;
    return this;
  }

   /**
   * [ИНН](https://ru.wikipedia.org/wiki/Идентификационный_номер_налогоплательщика) 
   * @return inn
  **/
  @ApiModelProperty(required = true, value = "[ИНН](https://ru.wikipedia.org/wiki/Идентификационный_номер_налогоплательщика) ")
  public String getInn() {
    return inn;
  }

  public void setInn(String inn) {
    this.inn = inn;
  }

  public RussianLegalEntity actualAddress(String actualAddress) {
    this.actualAddress = actualAddress;
    return this;
  }

   /**
   * Почтовый адрес места нахождения 
   * @return actualAddress
  **/
  @ApiModelProperty(required = true, value = "Почтовый адрес места нахождения ")
  public String getActualAddress() {
    return actualAddress;
  }

  public void setActualAddress(String actualAddress) {
    this.actualAddress = actualAddress;
  }

  public RussianLegalEntity postAddress(String postAddress) {
    this.postAddress = postAddress;
    return this;
  }

   /**
   * Почтовый адрес для отправки корреспонденции 
   * @return postAddress
  **/
  @ApiModelProperty(required = true, value = "Почтовый адрес для отправки корреспонденции ")
  public String getPostAddress() {
    return postAddress;
  }

  public void setPostAddress(String postAddress) {
    this.postAddress = postAddress;
  }

  public RussianLegalEntity representativePosition(String representativePosition) {
    this.representativePosition = representativePosition;
    return this;
  }

   /**
   * Наименование должности [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представителя 
   * @return representativePosition
  **/
  @ApiModelProperty(required = true, value = "Наименование должности [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представителя ")
  public String getRepresentativePosition() {
    return representativePosition;
  }

  public void setRepresentativePosition(String representativePosition) {
    this.representativePosition = representativePosition;
  }

  public RussianLegalEntity representativeFullName(String representativeFullName) {
    this.representativeFullName = representativeFullName;
    return this;
  }

   /**
   * ФИО [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представителя 
   * @return representativeFullName
  **/
  @ApiModelProperty(required = true, value = "ФИО [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представителя ")
  public String getRepresentativeFullName() {
    return representativeFullName;
  }

  public void setRepresentativeFullName(String representativeFullName) {
    this.representativeFullName = representativeFullName;
  }

  public RussianLegalEntity representativeDocument(String representativeDocument) {
    this.representativeDocument = representativeDocument;
    return this;
  }

   /**
   * Идентификационные данные документа, на основании которого действует [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представитель 
   * @return representativeDocument
  **/
  @ApiModelProperty(required = true, value = "Идентификационные данные документа, на основании которого действует [ЕИО](https://ru.wikipedia.org/wiki/Исполнительный_орган_общества) или его представитель ")
  public String getRepresentativeDocument() {
    return representativeDocument;
  }

  public void setRepresentativeDocument(String representativeDocument) {
    this.representativeDocument = representativeDocument;
  }

  public RussianLegalEntity bankAccount(BankAccount bankAccount) {
    this.bankAccount = bankAccount;
    return this;
  }

   /**
   * Get bankAccount
   * @return bankAccount
  **/
  @ApiModelProperty(required = true, value = "")
  public BankAccount getBankAccount() {
    return bankAccount;
  }

  public void setBankAccount(BankAccount bankAccount) {
    this.bankAccount = bankAccount;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RussianLegalEntity russianLegalEntity = (RussianLegalEntity) o;
    return Objects.equals(this.registeredName, russianLegalEntity.registeredName) &&
        Objects.equals(this.registeredNumber, russianLegalEntity.registeredNumber) &&
        Objects.equals(this.inn, russianLegalEntity.inn) &&
        Objects.equals(this.actualAddress, russianLegalEntity.actualAddress) &&
        Objects.equals(this.postAddress, russianLegalEntity.postAddress) &&
        Objects.equals(this.representativePosition, russianLegalEntity.representativePosition) &&
        Objects.equals(this.representativeFullName, russianLegalEntity.representativeFullName) &&
        Objects.equals(this.representativeDocument, russianLegalEntity.representativeDocument) &&
        Objects.equals(this.bankAccount, russianLegalEntity.bankAccount) &&
        super.equals(o);
  }

  @Override
  public int hashCode() {
    return Objects.hash(registeredName, registeredNumber, inn, actualAddress, postAddress, representativePosition, representativeFullName, representativeDocument, bankAccount, super.hashCode());
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class RussianLegalEntity {\n");
    sb.append("    ").append(toIndentedString(super.toString())).append("\n");
    sb.append("    registeredName: ").append(toIndentedString(registeredName)).append("\n");
    sb.append("    registeredNumber: ").append(toIndentedString(registeredNumber)).append("\n");
    sb.append("    inn: ").append(toIndentedString(inn)).append("\n");
    sb.append("    actualAddress: ").append(toIndentedString(actualAddress)).append("\n");
    sb.append("    postAddress: ").append(toIndentedString(postAddress)).append("\n");
    sb.append("    representativePosition: ").append(toIndentedString(representativePosition)).append("\n");
    sb.append("    representativeFullName: ").append(toIndentedString(representativeFullName)).append("\n");
    sb.append("    representativeDocument: ").append(toIndentedString(representativeDocument)).append("\n");
    sb.append("    bankAccount: ").append(toIndentedString(bankAccount)).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