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

com.adyen.model.balanceplatform.PaginatedPaymentInstrumentsResponse Maven / Gradle / Ivy

There is a newer version: 38.1.0
Show newest version
/*
 * Configuration API
 *
 * The version of the OpenAPI document: 2
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.adyen.model.balanceplatform;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.adyen.model.balanceplatform.PaymentInstrument;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;


/**
 * PaginatedPaymentInstrumentsResponse
 */
@JsonPropertyOrder({
  PaginatedPaymentInstrumentsResponse.JSON_PROPERTY_HAS_NEXT,
  PaginatedPaymentInstrumentsResponse.JSON_PROPERTY_HAS_PREVIOUS,
  PaginatedPaymentInstrumentsResponse.JSON_PROPERTY_PAYMENT_INSTRUMENTS
})

public class PaginatedPaymentInstrumentsResponse {
  public static final String JSON_PROPERTY_HAS_NEXT = "hasNext";
  private Boolean hasNext;

  public static final String JSON_PROPERTY_HAS_PREVIOUS = "hasPrevious";
  private Boolean hasPrevious;

  public static final String JSON_PROPERTY_PAYMENT_INSTRUMENTS = "paymentInstruments";
  private List paymentInstruments;

  public PaginatedPaymentInstrumentsResponse() { 
  }

  /**
   * Indicates whether there are more items on the next page.
   *
   * @param hasNext Indicates whether there are more items on the next page.
   * @return the current {@code PaginatedPaymentInstrumentsResponse} instance, allowing for method chaining
   */
  public PaginatedPaymentInstrumentsResponse hasNext(Boolean hasNext) {
    this.hasNext = hasNext;
    return this;
  }

  /**
   * Indicates whether there are more items on the next page.
   * @return hasNext Indicates whether there are more items on the next page.
   */
  @JsonProperty(JSON_PROPERTY_HAS_NEXT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Boolean getHasNext() {
    return hasNext;
  }

  /**
   * Indicates whether there are more items on the next page.
   *
   * @param hasNext Indicates whether there are more items on the next page.
   */
  @JsonProperty(JSON_PROPERTY_HAS_NEXT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setHasNext(Boolean hasNext) {
    this.hasNext = hasNext;
  }

  /**
   * Indicates whether there are more items on the previous page.
   *
   * @param hasPrevious Indicates whether there are more items on the previous page.
   * @return the current {@code PaginatedPaymentInstrumentsResponse} instance, allowing for method chaining
   */
  public PaginatedPaymentInstrumentsResponse hasPrevious(Boolean hasPrevious) {
    this.hasPrevious = hasPrevious;
    return this;
  }

  /**
   * Indicates whether there are more items on the previous page.
   * @return hasPrevious Indicates whether there are more items on the previous page.
   */
  @JsonProperty(JSON_PROPERTY_HAS_PREVIOUS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Boolean getHasPrevious() {
    return hasPrevious;
  }

  /**
   * Indicates whether there are more items on the previous page.
   *
   * @param hasPrevious Indicates whether there are more items on the previous page.
   */
  @JsonProperty(JSON_PROPERTY_HAS_PREVIOUS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setHasPrevious(Boolean hasPrevious) {
    this.hasPrevious = hasPrevious;
  }

  /**
   * List of payment instruments associated with the balance account.
   *
   * @param paymentInstruments List of payment instruments associated with the balance account.
   * @return the current {@code PaginatedPaymentInstrumentsResponse} instance, allowing for method chaining
   */
  public PaginatedPaymentInstrumentsResponse paymentInstruments(List paymentInstruments) {
    this.paymentInstruments = paymentInstruments;
    return this;
  }

  public PaginatedPaymentInstrumentsResponse addPaymentInstrumentsItem(PaymentInstrument paymentInstrumentsItem) {
    if (this.paymentInstruments == null) {
      this.paymentInstruments = new ArrayList<>();
    }
    this.paymentInstruments.add(paymentInstrumentsItem);
    return this;
  }

  /**
   * List of payment instruments associated with the balance account.
   * @return paymentInstruments List of payment instruments associated with the balance account.
   */
  @JsonProperty(JSON_PROPERTY_PAYMENT_INSTRUMENTS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public List getPaymentInstruments() {
    return paymentInstruments;
  }

  /**
   * List of payment instruments associated with the balance account.
   *
   * @param paymentInstruments List of payment instruments associated with the balance account.
   */
  @JsonProperty(JSON_PROPERTY_PAYMENT_INSTRUMENTS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setPaymentInstruments(List paymentInstruments) {
    this.paymentInstruments = paymentInstruments;
  }

  /**
   * Return true if this PaginatedPaymentInstrumentsResponse object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PaginatedPaymentInstrumentsResponse paginatedPaymentInstrumentsResponse = (PaginatedPaymentInstrumentsResponse) o;
    return Objects.equals(this.hasNext, paginatedPaymentInstrumentsResponse.hasNext) &&
        Objects.equals(this.hasPrevious, paginatedPaymentInstrumentsResponse.hasPrevious) &&
        Objects.equals(this.paymentInstruments, paginatedPaymentInstrumentsResponse.paymentInstruments);
  }

  @Override
  public int hashCode() {
    return Objects.hash(hasNext, hasPrevious, paymentInstruments);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class PaginatedPaymentInstrumentsResponse {\n");
    sb.append("    hasNext: ").append(toIndentedString(hasNext)).append("\n");
    sb.append("    hasPrevious: ").append(toIndentedString(hasPrevious)).append("\n");
    sb.append("    paymentInstruments: ").append(toIndentedString(paymentInstruments)).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(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

/**
   * Create an instance of PaginatedPaymentInstrumentsResponse given an JSON string
   *
   * @param jsonString JSON string
   * @return An instance of PaginatedPaymentInstrumentsResponse
   * @throws JsonProcessingException if the JSON string is invalid with respect to PaginatedPaymentInstrumentsResponse
   */
  public static PaginatedPaymentInstrumentsResponse fromJson(String jsonString) throws JsonProcessingException {
    return JSON.getMapper().readValue(jsonString, PaginatedPaymentInstrumentsResponse.class);
  }
/**
  * Convert an instance of PaginatedPaymentInstrumentsResponse to an JSON string
  *
  * @return JSON string
  */
  public String toJson() throws JsonProcessingException {
    return JSON.getMapper().writeValueAsString(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy