sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
40 lines (39 loc) • 1.04 kB
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface Address5 {
/** The first name */
firstName?: string;
/** The last name */
lastName?: string;
/** The company name */
companyName?: string;
/** The department name */
departmentName?: string;
/** The ISO2 country code */
countryCode?: string;
/** The zipcode */
zipcode?: string;
/** The region name */
region?: string;
/** The district name */
district?: string;
/** The city name */
city?: string;
/** The street name */
street?: string;
/** The house number */
houseNumber?: string;
/** The house number suffix */
houseNumberSuffix?: string;
/** The building name */
building?: string;
/** The floor of the building */
floor?: string;
/** An additional remark */
remark?: string;
}
export declare const address5Schema: Schema<Address5>;