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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy