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

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

There is a newer version: 5.5.0
Show newest version
package com.easypost.model;

public class ShipmentMessage {
  String carrier;
  String type;
  String message;

  public String getCarrier() {
    return carrier;
  }
  public void setCarrier(String carrier) {
    this.carrier = carrier;
  }

  public String getType() {
    return type;
  }
  public void setType(String type) {
    this.type = type;
  }

  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy