dev.vality.swag.payments.model.Representative Maven / Gradle / Ivy
/*
* 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.RepresentativeDocument;
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 Representative {
@JsonProperty("position")
private String position = null;
@JsonProperty("fullName")
private String fullName = null;
@JsonProperty("document")
private RepresentativeDocument document = null;
public Representative position(String position) {
this.position = position;
return this;
}
/**
* Наименование должности ЕИО/представителя
* @return position
**/
@ApiModelProperty(required = true, value = "Наименование должности ЕИО/представителя")
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public Representative fullName(String fullName) {
this.fullName = fullName;
return this;
}
/**
* ФИО ЕИО/представителя
* @return fullName
**/
@ApiModelProperty(required = true, value = "ФИО ЕИО/представителя")
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public Representative document(RepresentativeDocument document) {
this.document = document;
return this;
}
/**
* Get document
* @return document
**/
@ApiModelProperty(required = true, value = "")
public RepresentativeDocument getDocument() {
return document;
}
public void setDocument(RepresentativeDocument document) {
this.document = document;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Representative representative = (Representative) o;
return Objects.equals(this.position, representative.position) &&
Objects.equals(this.fullName, representative.fullName) &&
Objects.equals(this.document, representative.document);
}
@Override
public int hashCode() {
return Objects.hash(position, fullName, document);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Representative {\n");
sb.append(" position: ").append(toIndentedString(position)).append("\n");
sb.append(" fullName: ").append(toIndentedString(fullName)).append("\n");
sb.append(" document: ").append(toIndentedString(document)).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