UNPKG

sdksio-postnl-ecommerce-apis-sdk

Version:

Collection of PostNL API's for ecommerce processes

24 lines (23 loc) 764 B
/** * PostNL Ecommerce APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { Address3 } from './address3'; export interface Customer { address?: Address3; /** Code of delivery location at PostNL Pakketten */ collectionLocation?: string; /** Name of customer contact person */ contactPerson?: string; /** Customer code as known at PostNL Pakketten */ customerCode: string; /** Name of customer contact person */ customerNumber: string; /** E-mail address of the customer. Mandatory for Non EU destinations. */ email?: string; /** Customer name */ name?: string; } export declare const customerSchema: Schema<Customer>;