UNPKG

sdksio-postnl-ecommerce-apis-sdk

Version:

Collection of PostNL API's for ecommerce processes

22 lines (21 loc) 752 B
/** * PostNL Ecommerce APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; export interface CpcResponse { /** City of requested address */ city?: string; /** Postalcode of requested address */ postalCode?: string; /** Street of requested address */ streetName?: string; /** Housenumber of requested address */ houseNumber?: number; /** Housenumber addition of requested address if applicable */ houseNumberAddition?: string; /** Full formatted address according to PostNL standard (returns each line as a separate string) */ formattedAddress?: string[]; } export declare const cpcResponseSchema: Schema<CpcResponse>;