UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

39 lines (38 loc) 905 B
/** @description Object containing billing address details */ export interface Address { /** * @description Second line of street or additional address information such as apartments and suits * @example Apartment 203 */ additionalInfo?: string; /** * @description City * @example Kiel */ city?: string; /** * @description ISO 3166-1 alpha-2 country code * @example DE */ countryCode?: string; /** * @description House number * @example 3 */ houseNumber?: string; /** * @description State (ISO 3166-2 subdivisions), only if country=US, CA, CN, JP, MX, BR, AR, ID, TH, IN. * @example BR */ state?: string; /** * @description Street name * @example Coral Avenue */ street?: string; /** * @description Zip code * @example 12345 */ zip?: string; }