com.easypost.model.ShipmentOptions 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;
public final class ShipmentOptions {
private String smartpostHub;
private String smartpostManifest;
/**
* Get the SmartPost hub of the shipment.
*
* @return the SmartPost hub of the shipment
*/
public String getSmartpostHub() {
return smartpostHub;
}
/**
* Set the SmartPost hub of the shipment.
*
* @param smartpostHub the SmartPost hub of the shipment
*/
public void setSmartpostHub(final String smartpostHub) {
this.smartpostHub = smartpostHub;
}
/**
* Get the SmartPost manifest of the shipment.
*
* @return the SmartPost manifest of the shipment
*/
public String getSmartpostManifest() {
return smartpostManifest;
}
/**
* Set the SmartPost manifest of the shipment.
*
* @param smartpostManifest the SmartPost manifest of the shipment
*/
public void setSmartpostManifest(final String smartpostManifest) {
this.smartpostManifest = smartpostManifest;
}
}