sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
19 lines (18 loc) • 706 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { Location } from './location';
export interface PickupOption {
/** Date from which the parcel can be picked up at the PostNL location */
pickupDate?: string;
/** The date when you need to deliver the shipment to PostNL to ensure the expected delivery date is achieved. Will be returned as 'null' if not calculated */
shippingDate?: string;
/** The pickup option */
option?: string;
/** Array of pickup locations */
locations?: Location[];
}
export declare const pickupOptionSchema: Schema<PickupOption>;