UNPKG

sdksio-postnl-ecommerce-apis-sdk

Version:

Collection of PostNL API's for ecommerce processes

24 lines (23 loc) 650 B
/** * PostNL Ecommerce APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; export interface Event { /** The event code */ code?: string; /** The event description */ description?: string; /** Location code of the destination */ destinationLocationCode?: string; /** The current location code */ locationCode?: string; /** The route code */ routeCode?: string; /** The route number */ routeNumber?: string; /** Timestamp of the event */ timeStamp?: string; } export declare const eventSchema: Schema<Event>;