sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
23 lines (22 loc) • 680 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
/** The pickup location address */
export interface Address1 {
/** The pickup location street */
street?: string;
/** The pickup location zipcode */
zipcode?: string;
/** The pickup location housenumber */
houseNr?: number;
/** The pickup location housenumber extension */
houseNrExt?: string;
/** The pickup location country */
countrycode?: string;
/** The pickup location company name */
companyName?: string;
}
export declare const address1Schema: Schema<Address1>;