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

com.adyen.model.marketpay.Tier Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
/*
 *                       ######
 *                       ######
 * ############    ####( ######  #####. ######  ############   ############
 * #############  #####( ######  #####. ######  #############  #############
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
 * #############  #############  #############  #############  #####  ######
 *  ############   ############  #############   ############  #####  ######
 *                                      ######
 *                               #############
 *                               ############
 *
 * Adyen Java API Library
 *
 * Copyright (c) 2017 Adyen B.V.
 * This file is open source and available under the MIT license.
 * See the LICENSE file for more info.
 */
package com.adyen.model.marketpay;

import java.util.Objects;
import com.adyen.model.Amount;
import com.google.gson.annotations.SerializedName;

/**
 * Tier
 */
public class Tier {
    @SerializedName("deadlineConfiguration")
    private String deadlineConfiguration = null;

    @SerializedName("fromAmount")
    private Amount fromAmount = null;

    @SerializedName("tierNumber")
    private Integer tierNumber = null;

    @SerializedName("toAmount")
    private Amount toAmount = null;

    public Tier deadlineConfiguration(String deadlineConfiguration) {
        this.deadlineConfiguration = deadlineConfiguration;
        return this;
    }

    /**
     * Get deadlineConfiguration
     *
     * @return deadlineConfiguration
     **/
    public String getDeadlineConfiguration() {
        return deadlineConfiguration;
    }

    public void setDeadlineConfiguration(String deadlineConfiguration) {
        this.deadlineConfiguration = deadlineConfiguration;
    }

    public Tier fromAmount(Amount fromAmount) {
        this.fromAmount = fromAmount;
        return this;
    }

    /**
     * Get fromAmount
     *
     * @return fromAmount
     **/
    public Amount getFromAmount() {
        return fromAmount;
    }

    public void setFromAmount(Amount fromAmount) {
        this.fromAmount = fromAmount;
    }

    public Tier tierNumber(Integer tierNumber) {
        this.tierNumber = tierNumber;
        return this;
    }

    /**
     * Get tierNumber
     *
     * @return tierNumber
     **/
    public Integer getTierNumber() {
        return tierNumber;
    }

    public void setTierNumber(Integer tierNumber) {
        this.tierNumber = tierNumber;
    }

    public Tier toAmount(Amount toAmount) {
        this.toAmount = toAmount;
        return this;
    }

    /**
     * Get toAmount
     *
     * @return toAmount
     **/
    public Amount getToAmount() {
        return toAmount;
    }

    public void setToAmount(Amount toAmount) {
        this.toAmount = toAmount;
    }


    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Tier tier = (Tier) o;
        return Objects.equals(this.deadlineConfiguration, tier.deadlineConfiguration) && Objects.equals(this.fromAmount, tier.fromAmount) && Objects.equals(this.tierNumber, tier.tierNumber) && Objects
                .equals(this.toAmount, tier.toAmount);
    }

    @Override
    public int hashCode() {
        return Objects.hash(deadlineConfiguration, fromAmount, tierNumber, toAmount);
    }


    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class Tier {\n");

        sb.append("    deadlineConfiguration: ").append(toIndentedString(deadlineConfiguration)).append("\n");
        sb.append("    fromAmount: ").append(toIndentedString(fromAmount)).append("\n");
        sb.append("    tierNumber: ").append(toIndentedString(tierNumber)).append("\n");
        sb.append("    toAmount: ").append(toIndentedString(toAmount)).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    ");
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy