UNPKG

sdksio-postnl-ecommerce-apis-sdk

Version:

Collection of PostNL API's for ecommerce processes

15 lines (14 loc) 623 B
/** * PostNL Ecommerce APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { MergedLabel } from './mergedLabel'; import { ResponseShipment1 } from './responseShipment1'; export interface LabellingResponse { /** The merged label output; only returned if the printer type selected in your request merges the pdf labels into a single file (e.g. using GraphicFile|Merge). */ mergedLabels?: MergedLabel[]; responseShipments?: ResponseShipment1[]; } export declare const labellingResponseSchema: Schema<LabellingResponse>;