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

dev.vality.swag.payments.model.RecurrentPayer 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.ContactInfo;
import dev.vality.swag.payments.model.Payer;
import dev.vality.swag.payments.model.PayerSessionInfo;
import dev.vality.swag.payments.model.PaymentRecurrentParent;
import dev.vality.swag.payments.model.PaymentToolDetails;
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 RecurrentPayer extends Payer {
  @JsonProperty("contactInfo")
  private ContactInfo contactInfo = null;

  @JsonProperty("recurrentParentPayment")
  private PaymentRecurrentParent recurrentParentPayment = null;

  @JsonProperty("paymentToolDetails")
  private PaymentToolDetails paymentToolDetails = null;

  public RecurrentPayer contactInfo(ContactInfo contactInfo) {
    this.contactInfo = contactInfo;
    return this;
  }

   /**
   * Get contactInfo
   * @return contactInfo
  **/
  @ApiModelProperty(required = true, value = "")
  public ContactInfo getContactInfo() {
    return contactInfo;
  }

  public void setContactInfo(ContactInfo contactInfo) {
    this.contactInfo = contactInfo;
  }

  public RecurrentPayer recurrentParentPayment(PaymentRecurrentParent recurrentParentPayment) {
    this.recurrentParentPayment = recurrentParentPayment;
    return this;
  }

   /**
   * Get recurrentParentPayment
   * @return recurrentParentPayment
  **/
  @ApiModelProperty(required = true, value = "")
  public PaymentRecurrentParent getRecurrentParentPayment() {
    return recurrentParentPayment;
  }

  public void setRecurrentParentPayment(PaymentRecurrentParent recurrentParentPayment) {
    this.recurrentParentPayment = recurrentParentPayment;
  }

  public RecurrentPayer paymentToolDetails(PaymentToolDetails paymentToolDetails) {
    this.paymentToolDetails = paymentToolDetails;
    return this;
  }

   /**
   * Get paymentToolDetails
   * @return paymentToolDetails
  **/
  @ApiModelProperty(value = "")
  public PaymentToolDetails getPaymentToolDetails() {
    return paymentToolDetails;
  }

  public void setPaymentToolDetails(PaymentToolDetails paymentToolDetails) {
    this.paymentToolDetails = paymentToolDetails;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RecurrentPayer recurrentPayer = (RecurrentPayer) o;
    return Objects.equals(this.contactInfo, recurrentPayer.contactInfo) &&
        Objects.equals(this.recurrentParentPayment, recurrentPayer.recurrentParentPayment) &&
        Objects.equals(this.paymentToolDetails, recurrentPayer.paymentToolDetails) &&
        super.equals(o);
  }

  @Override
  public int hashCode() {
    return Objects.hash(contactInfo, recurrentParentPayment, paymentToolDetails, super.hashCode());
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class RecurrentPayer {\n");
    sb.append("    ").append(toIndentedString(super.toString())).append("\n");
    sb.append("    contactInfo: ").append(toIndentedString(contactInfo)).append("\n");
    sb.append("    recurrentParentPayment: ").append(toIndentedString(recurrentParentPayment)).append("\n");
    sb.append("    paymentToolDetails: ").append(toIndentedString(paymentToolDetails)).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