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

19 lines (18 loc) 454 B
/** @description Object containing the name details of the customer */ export interface PersonalName { /** * @description Given name(s) or first name(s) of the customer * @example Wile */ firstName?: string; /** * @description Surname(s) or last name(s) of the customer * @example E. Coyote */ surname?: string; /** * @description Title of customer * @example Dr. */ title?: string; }