/**
 * Selling Partner APIs for Fulfillment Outbound
 * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
 *
 * The version of the OpenAPI document: 2020-07-01
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { EventCode } from './event-code';
import type { TrackingAddress } from './tracking-address';
/**
 * Information for tracking package deliveries.
 * @export
 * @interface TrackingEvent
 */
export interface TrackingEvent {
    /**
     * Date timestamp
     * @type {string}
     * @memberof TrackingEvent
     */
    'eventDate': string;
    /**
     *
     * @type {TrackingAddress}
     * @memberof TrackingEvent
     */
    'eventAddress': TrackingAddress;
    /**
     *
     * @type {EventCode}
     * @memberof TrackingEvent
     */
    'eventCode': EventCode;
    /**
     * A description for the corresponding event code.
     * @type {string}
     * @memberof TrackingEvent
     */
    'eventDescription': string;
}
