pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 382 B
TypeScript
/** @description Object containing contact details like email address and phone number. */
export interface ContactDetails {
/**
* @description Email address of the customer
* @example wile.e.coyote@acmelabs.com
*/
emailAddress?: string;
/**
* @description Phone number of the customer
* @example +1234567890
*/
phoneNumber?: string;
}