dev.vality.swag.payments.model.CustomerBindingInteractionRequested 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.CustomerChange;
import dev.vality.swag.payments.model.UserInteraction;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* CustomerBindingInteractionRequested
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-08-22T08:18:24.176Z")
public class CustomerBindingInteractionRequested extends CustomerChange {
@JsonProperty("customerBindingID")
private String customerBindingID = null;
@JsonProperty("userInteraction")
private UserInteraction userInteraction = null;
public CustomerBindingInteractionRequested customerBindingID(String customerBindingID) {
this.customerBindingID = customerBindingID;
return this;
}
/**
* Идентификатор привязки
* @return customerBindingID
**/
@ApiModelProperty(required = true, value = "Идентификатор привязки")
public String getCustomerBindingID() {
return customerBindingID;
}
public void setCustomerBindingID(String customerBindingID) {
this.customerBindingID = customerBindingID;
}
public CustomerBindingInteractionRequested userInteraction(UserInteraction userInteraction) {
this.userInteraction = userInteraction;
return this;
}
/**
* Get userInteraction
* @return userInteraction
**/
@ApiModelProperty(required = true, value = "")
public UserInteraction getUserInteraction() {
return userInteraction;
}
public void setUserInteraction(UserInteraction userInteraction) {
this.userInteraction = userInteraction;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CustomerBindingInteractionRequested customerBindingInteractionRequested = (CustomerBindingInteractionRequested) o;
return Objects.equals(this.customerBindingID, customerBindingInteractionRequested.customerBindingID) &&
Objects.equals(this.userInteraction, customerBindingInteractionRequested.userInteraction) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(customerBindingID, userInteraction, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CustomerBindingInteractionRequested {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" customerBindingID: ").append(toIndentedString(customerBindingID)).append("\n");
sb.append(" userInteraction: ").append(toIndentedString(userInteraction)).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