com.easypost.model.TrackingDetail 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
package com.easypost.model;
import java.util.Date;
public class TrackingDetail {
String status;
String message;
Date datetime;
TrackingLocation trackingLocation;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public Date getDatetime() {
return datetime;
}
public void setDatetime(Date datetime) {
this.datetime = datetime;
}
public TrackingLocation getTrackingLocation() { return trackingLocation; }
public void setTrackingLocation(TrackingLocation location) { this.trackingLocation = location; }
}