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

41 lines (40 loc) 1.01 kB
import type { PersonalName } from './PersonalName.js'; /** @description Object containing personal or shipping address information. */ export interface AddressPersonal { /** * @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 MX */ state?: string; /** * @description Street name * @example Coral Avenue */ street?: string; /** * @description Zip code * @example 1234 */ zip?: string; name?: PersonalName; }