
com.adyen.model.checkout.CheckoutSessionInstallmentOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* Adyen Checkout API
*
* The version of the OpenAPI document: 71
*
*
* 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.checkout;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
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;
/**
* CheckoutSessionInstallmentOption
*/
@JsonPropertyOrder({
CheckoutSessionInstallmentOption.JSON_PROPERTY_PLANS,
CheckoutSessionInstallmentOption.JSON_PROPERTY_PRESELECTED_VALUE,
CheckoutSessionInstallmentOption.JSON_PROPERTY_VALUES
})
public class CheckoutSessionInstallmentOption {
/**
* Gets or Sets plans
*/
public enum PlansEnum {
BONUS(String.valueOf("bonus")),
BUYNOW_PAYLATER(String.valueOf("buynow_paylater")),
INTERES_REFUND_PRCTG(String.valueOf("interes_refund_prctg")),
INTEREST_BONUS(String.valueOf("interest_bonus")),
NOINTERES_REFUND_PRCTG(String.valueOf("nointeres_refund_prctg")),
NOINTEREST_BONUS(String.valueOf("nointerest_bonus")),
REFUND_PRCTG(String.valueOf("refund_prctg")),
REGULAR(String.valueOf("regular")),
REVOLVING(String.valueOf("revolving")),
WITH_INTEREST(String.valueOf("with_interest"));
private String value;
PlansEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static PlansEnum fromValue(String value) {
for (PlansEnum b : PlansEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_PLANS = "plans";
private List plans;
public static final String JSON_PROPERTY_PRESELECTED_VALUE = "preselectedValue";
private Integer preselectedValue;
public static final String JSON_PROPERTY_VALUES = "values";
private List values;
public CheckoutSessionInstallmentOption() {
}
/**
* Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
*
* @param plans Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
* @return the current {@code CheckoutSessionInstallmentOption} instance, allowing for method chaining
*/
public CheckoutSessionInstallmentOption plans(List plans) {
this.plans = plans;
return this;
}
public CheckoutSessionInstallmentOption addPlansItem(PlansEnum plansItem) {
if (this.plans == null) {
this.plans = new ArrayList<>();
}
this.plans.add(plansItem);
return this;
}
/**
* Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
* @return plans Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
*/
@JsonProperty(JSON_PROPERTY_PLANS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getPlans() {
return plans;
}
/**
* Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
*
* @param plans Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving*** **bonus** * **with_interest** * **buynow_paylater** * **nointerest_bonus** * **interest_bonus** * **refund_prctg** * **nointeres_refund_prctg** * **interes_refund_prctg**
*/
@JsonProperty(JSON_PROPERTY_PLANS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPlans(List plans) {
this.plans = plans;
}
/**
* Preselected number of installments offered for this payment method.
*
* @param preselectedValue Preselected number of installments offered for this payment method.
* @return the current {@code CheckoutSessionInstallmentOption} instance, allowing for method chaining
*/
public CheckoutSessionInstallmentOption preselectedValue(Integer preselectedValue) {
this.preselectedValue = preselectedValue;
return this;
}
/**
* Preselected number of installments offered for this payment method.
* @return preselectedValue Preselected number of installments offered for this payment method.
*/
@JsonProperty(JSON_PROPERTY_PRESELECTED_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getPreselectedValue() {
return preselectedValue;
}
/**
* Preselected number of installments offered for this payment method.
*
* @param preselectedValue Preselected number of installments offered for this payment method.
*/
@JsonProperty(JSON_PROPERTY_PRESELECTED_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPreselectedValue(Integer preselectedValue) {
this.preselectedValue = preselectedValue;
}
/**
* An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
*
* @param values An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
* @return the current {@code CheckoutSessionInstallmentOption} instance, allowing for method chaining
*/
public CheckoutSessionInstallmentOption values(List values) {
this.values = values;
return this;
}
public CheckoutSessionInstallmentOption addValuesItem(Integer valuesItem) {
if (this.values == null) {
this.values = new ArrayList<>();
}
this.values.add(valuesItem);
return this;
}
/**
* An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
* @return values An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
*/
@JsonProperty(JSON_PROPERTY_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getValues() {
return values;
}
/**
* An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
*
* @param values An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
*/
@JsonProperty(JSON_PROPERTY_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setValues(List values) {
this.values = values;
}
/**
* Return true if this CheckoutSessionInstallmentOption object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CheckoutSessionInstallmentOption checkoutSessionInstallmentOption = (CheckoutSessionInstallmentOption) o;
return Objects.equals(this.plans, checkoutSessionInstallmentOption.plans) &&
Objects.equals(this.preselectedValue, checkoutSessionInstallmentOption.preselectedValue) &&
Objects.equals(this.values, checkoutSessionInstallmentOption.values);
}
@Override
public int hashCode() {
return Objects.hash(plans, preselectedValue, values);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CheckoutSessionInstallmentOption {\n");
sb.append(" plans: ").append(toIndentedString(plans)).append("\n");
sb.append(" preselectedValue: ").append(toIndentedString(preselectedValue)).append("\n");
sb.append(" values: ").append(toIndentedString(values)).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 CheckoutSessionInstallmentOption given an JSON string
*
* @param jsonString JSON string
* @return An instance of CheckoutSessionInstallmentOption
* @throws JsonProcessingException if the JSON string is invalid with respect to CheckoutSessionInstallmentOption
*/
public static CheckoutSessionInstallmentOption fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, CheckoutSessionInstallmentOption.class);
}
/**
* Convert an instance of CheckoutSessionInstallmentOption to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy