/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { Status2 } from './status2';
export interface ShippingstatusResponseUpdatedShipment {
    /** The barcode belonging to the status update */
    barcode?: string;
    /** The date of the update */
    creationDate?: string;
    /** The customer number */
    customerNumber?: string;
    /** The customer code */
    customerCode?: string;
    /** The status update. See [Status codes](#tag/TandT-status-codes/Status-codes) for possible values. */
    status?: Status2;
}
export declare const shippingstatusResponseUpdatedShipmentSchema: Schema<ShippingstatusResponseUpdatedShipment>;
