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
package com.easypost.model;
public class ShipmentOptions {
String smartpostHub;
String smartpostManifest;
public String getSmartpostHub() {
return smartpostHub;
}
public void setSmartpostHub(String smartpostHub) {
this.smartpostHub = smartpostHub;
}
public String getSmartpostManifest() {
return smartpostManifest;
}
public void setSmartpostManifest(String smartpostManifest) {
this.smartpostManifest = smartpostManifest;
}
}