com.easypost.model.TrackerCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypost-api-client Show documentation
Show all versions of easypost-api-client Show documentation
EasyPost Java Client Library for the EasyPost Shipping API
The newest version!
package com.easypost.model;
import com.easypost.net.EasyPostResource;
import java.util.List;
public final class TrackerCollection extends EasyPostResource {
private List trackers;
private Boolean hasMore;
/**
* Get whether there are more Trackers to retrieve.
*
* @return true if there are more Trackers to retrieve, false otherwise.
*/
public Boolean getHasMore() {
return hasMore;
}
/**
* Set whether there are more Trackers to retrieve.
*
* @param hasMore true if there are more Trackers to retrieve, false otherwise.
*/
public void setHasMore(final Boolean hasMore) {
this.hasMore = hasMore;
}
/**
* Get this TrackerCollection's Tracker objects.
*
* @return List of Tracker objects.
*/
public List getTrackers() {
return trackers;
}
/**
* Set this TrackerCollection's Tracker objects.
*
* @param trackers List of Tracker objects.
*/
public void setTrackers(final List trackers) {
this.trackers = trackers;
}
}