com.easypost.model.EventData 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.Map;
public final class EventData extends EasyPostResource {
private Map previousAttributes;
private EasyPostResource object;
/**
* Get the object of this EventData.
*
* @return EasyPostResource object
*/
public EasyPostResource getObject() {
return object;
}
/**
* Set the object of this EventData.
*
* @param object EasyPostResource object
*/
public void setObject(final EasyPostResource object) {
this.object = object;
}
/**
* Get the previous attributes of this EventData.
*
* @return Map of previous attributes
*/
public Map getPreviousAttributes() {
return previousAttributes;
}
/**
* Set the previous attributes of this EventData.
*
* @param previousAttributes Map of previous attributes
*/
public void setPreviousAttributes(final Map previousAttributes) {
this.previousAttributes = previousAttributes;
}
}