dev.vality.swag.payments.model.InvoiceParams 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.Allocation;
import dev.vality.swag.payments.model.InvoiceBankAccount;
import dev.vality.swag.payments.model.InvoiceCart;
import dev.vality.swag.payments.model.InvoiceClientInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
/**
* InvoiceParams
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-08-22T08:18:24.176Z")
public class InvoiceParams {
@JsonProperty("shopID")
private String shopID = null;
@JsonProperty("partyID")
private String partyID = null;
@JsonProperty("externalID")
private String externalID = null;
@JsonProperty("dueDate")
private OffsetDateTime dueDate = null;
@JsonProperty("amount")
private Long amount = null;
@JsonProperty("currency")
private String currency = null;
@JsonProperty("product")
private String product = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("cart")
private InvoiceCart cart = null;
@JsonProperty("allocation")
private Allocation allocation = null;
@JsonProperty("bankAccount")
private InvoiceBankAccount bankAccount = null;
@JsonProperty("metadata")
private Object metadata = null;
@JsonProperty("clientInfo")
private InvoiceClientInfo clientInfo = null;
public InvoiceParams shopID(String shopID) {
this.shopID = shopID;
return this;
}
/**
* Идентификатор магазина
* @return shopID
**/
@ApiModelProperty(required = true, value = "Идентификатор магазина")
public String getShopID() {
return shopID;
}
public void setShopID(String shopID) {
this.shopID = shopID;
}
public InvoiceParams partyID(String partyID) {
this.partyID = partyID;
return this;
}
/**
* Уникальный в рамках платформы идентификатор участника.
* @return partyID
**/
@ApiModelProperty(value = "Уникальный в рамках платформы идентификатор участника.")
public String getPartyID() {
return partyID;
}
public void setPartyID(String partyID) {
this.partyID = partyID;
}
public InvoiceParams externalID(String externalID) {
this.externalID = externalID;
return this;
}
/**
* Внешний идентификатор инвойса
* @return externalID
**/
@ApiModelProperty(value = "Внешний идентификатор инвойса")
public String getExternalID() {
return externalID;
}
public void setExternalID(String externalID) {
this.externalID = externalID;
}
public InvoiceParams dueDate(OffsetDateTime dueDate) {
this.dueDate = dueDate;
return this;
}
/**
* Дата и время окончания действия инвойса, после наступления которых его уже невозможно будет оплатить
* @return dueDate
**/
@ApiModelProperty(required = true, value = "Дата и время окончания действия инвойса, после наступления которых его уже невозможно будет оплатить ")
public OffsetDateTime getDueDate() {
return dueDate;
}
public void setDueDate(OffsetDateTime dueDate) {
this.dueDate = dueDate;
}
public InvoiceParams amount(Long amount) {
this.amount = amount;
return this;
}
/**
* Стоимость предлагаемых товаров или услуг, в минорных денежных единицах, например в копейках в случае указания российских рублей в качестве валюты. Если стоимость не указана, то стоимостью инвойса будет считаться суммарная стоимость позиций в корзине.
* minimum: 1
* @return amount
**/
@ApiModelProperty(value = "Стоимость предлагаемых товаров или услуг, в минорных денежных единицах, например в копейках в случае указания российских рублей в качестве валюты. Если стоимость не указана, то стоимостью инвойса будет считаться суммарная стоимость позиций в корзине. ")
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public InvoiceParams currency(String currency) {
this.currency = currency;
return this;
}
/**
* Валюта, символьный код согласно [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
* @return currency
**/
@ApiModelProperty(required = true, value = "Валюта, символьный код согласно [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).")
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public InvoiceParams product(String product) {
this.product = product;
return this;
}
/**
* Наименование предлагаемых товаров или услуг
* @return product
**/
@ApiModelProperty(required = true, value = "Наименование предлагаемых товаров или услуг")
public String getProduct() {
return product;
}
public void setProduct(String product) {
this.product = product;
}
public InvoiceParams description(String description) {
this.description = description;
return this;
}
/**
* Описание предлагаемых товаров или услуг
* @return description
**/
@ApiModelProperty(value = "Описание предлагаемых товаров или услуг")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public InvoiceParams cart(InvoiceCart cart) {
this.cart = cart;
return this;
}
/**
* Get cart
* @return cart
**/
@ApiModelProperty(value = "")
public InvoiceCart getCart() {
return cart;
}
public void setCart(InvoiceCart cart) {
this.cart = cart;
}
public InvoiceParams allocation(Allocation allocation) {
this.allocation = allocation;
return this;
}
/**
* Get allocation
* @return allocation
**/
@ApiModelProperty(value = "")
public Allocation getAllocation() {
return allocation;
}
public void setAllocation(Allocation allocation) {
this.allocation = allocation;
}
public InvoiceParams bankAccount(InvoiceBankAccount bankAccount) {
this.bankAccount = bankAccount;
return this;
}
/**
* Get bankAccount
* @return bankAccount
**/
@ApiModelProperty(value = "")
public InvoiceBankAccount getBankAccount() {
return bankAccount;
}
public void setBankAccount(InvoiceBankAccount bankAccount) {
this.bankAccount = bankAccount;
}
public InvoiceParams metadata(Object metadata) {
this.metadata = metadata;
return this;
}
/**
* Метаданные, которые необходимо связать с инвойсом
* @return metadata
**/
@ApiModelProperty(required = true, value = "Метаданные, которые необходимо связать с инвойсом")
public Object getMetadata() {
return metadata;
}
public void setMetadata(Object metadata) {
this.metadata = metadata;
}
public InvoiceParams clientInfo(InvoiceClientInfo clientInfo) {
this.clientInfo = clientInfo;
return this;
}
/**
* Get clientInfo
* @return clientInfo
**/
@ApiModelProperty(value = "")
public InvoiceClientInfo getClientInfo() {
return clientInfo;
}
public void setClientInfo(InvoiceClientInfo clientInfo) {
this.clientInfo = clientInfo;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InvoiceParams invoiceParams = (InvoiceParams) o;
return Objects.equals(this.shopID, invoiceParams.shopID) &&
Objects.equals(this.partyID, invoiceParams.partyID) &&
Objects.equals(this.externalID, invoiceParams.externalID) &&
Objects.equals(this.dueDate, invoiceParams.dueDate) &&
Objects.equals(this.amount, invoiceParams.amount) &&
Objects.equals(this.currency, invoiceParams.currency) &&
Objects.equals(this.product, invoiceParams.product) &&
Objects.equals(this.description, invoiceParams.description) &&
Objects.equals(this.cart, invoiceParams.cart) &&
Objects.equals(this.allocation, invoiceParams.allocation) &&
Objects.equals(this.bankAccount, invoiceParams.bankAccount) &&
Objects.equals(this.metadata, invoiceParams.metadata) &&
Objects.equals(this.clientInfo, invoiceParams.clientInfo);
}
@Override
public int hashCode() {
return Objects.hash(shopID, partyID, externalID, dueDate, amount, currency, product, description, cart, allocation, bankAccount, metadata, clientInfo);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InvoiceParams {\n");
sb.append(" shopID: ").append(toIndentedString(shopID)).append("\n");
sb.append(" partyID: ").append(toIndentedString(partyID)).append("\n");
sb.append(" externalID: ").append(toIndentedString(externalID)).append("\n");
sb.append(" dueDate: ").append(toIndentedString(dueDate)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" product: ").append(toIndentedString(product)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" cart: ").append(toIndentedString(cart)).append("\n");
sb.append(" allocation: ").append(toIndentedString(allocation)).append("\n");
sb.append(" bankAccount: ").append(toIndentedString(bankAccount)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" clientInfo: ").append(toIndentedString(clientInfo)).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