UNPKG

sdksio-postnl-ecommerce-apis-sdk

Version:

Collection of PostNL API's for ecommerce processes

19 lines (18 loc) 621 B
/** * PostNL Ecommerce APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { DeliveryOption } from './deliveryOption'; import { PickupOption } from './pickupOption'; import { Warning } from './warning'; export interface CheckoutResponse { /** Array of delivery options */ deliveryOptions?: DeliveryOption[]; /** Array of possible pickup options */ pickupOptions?: PickupOption[]; /** An array of warnings */ warnings?: Warning[]; } export declare const checkoutResponseSchema: Schema<CheckoutResponse>;