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

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

The newest version!
package com.easypost.model;

import com.easypost.net.EasyPostResource;

import java.util.List;

public final class RefundCollection extends EasyPostResource {
    private List refunds;
    private Boolean hasMore;

    /**
     * Get whether there are more Refund objects to retrieve.
     *
     * @return true if there are more Refund objects to retrieve.
     */
    public Boolean getHasMore() {
        return hasMore;
    }

    /**
     * Set whether there are more Refund objects to retrieve.
     *
     * @param hasMore true if there are more Refund objects to retrieve.
     */
    public void setHasMore(final Boolean hasMore) {
        this.hasMore = hasMore;
    }

    /**
     * Get this RefundCollection's Refund objects.
     *
     * @return a List of Refund objects.
     */
    public List getRefunds() {
        return refunds;
    }

    /**
     * Set this RefundCollection's Refund objects.
     *
     * @param refunds a List of Refund objects.
     */
    public void setRefunds(final List refunds) {
        this.refunds = refunds;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy