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

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

The newest version!
package com.easypost.model;

import com.easypost.net.EasyPostResource;

import java.util.List;

public final class ReportCollection extends EasyPostResource {
    private List reports;
    private Boolean hasMore;

    /**
     * Get whether there are more reports to retrieve.
     *
     * @return true if there are more reports to retrieve, false otherwise.
     */
    public Boolean getHasMore() {
        return hasMore;
    }

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

    /**
     * Get this ReportCollection's Report objects.
     *
     * @return List of Report objects.
     */
    public List getReports() {
        return reports;
    }

    /**
     * Set this ReportCollection's Report objects.
     *
     * @param reports List of Report objects.
     */
    public void setReports(final List reports) {
        this.reports = reports;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy