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

com.easypost.model.CreditCardFund Maven / Gradle / Ivy

The newest version!
package com.easypost.model;

public class CreditCardFund {
    private String id;
    private String amount;

    /**
     * Get the amount of the CreditCardFund.
     *
     * @return the amount of the CreditCardFund.
     */
    public String getAmount() {
        return amount;
    }

    /**
     * Set the amount of the CreditCardFund.
     *
     * @param amount the amount of the CreditCardFund.
     */
    public void setAmount(final String amount) {
        this.amount = amount;
    }

    /**
     * Get the ID of the CreditCardFund.
     *
     * @return the ID of the CreditCardFund.
     */
    public String getId() {
        return id;
    }

    /**
     * Set the ID of the CreditCardFund.
     *
     * @param id the ID of the CreditCardFund.
     */
    public void setId(final String id) {
        this.id = id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy