pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 454 B
TypeScript
/** @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;
}