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

24 lines (23 loc) 724 B
/** @description Object containing the details of the PayPal account. */ export interface PaymentProduct840CustomerAccount { /** * @description Name of the company in case the PayPal account is owned by a business * @example Customer Company Name */ companyName?: string; /** * @description First name of the PayPal account holder * @example John */ firstName?: string; /** * @description The unique identifier of a PayPal account and will never change in the life cycle of a PayPal account. * @example RRCYJUTFJGZTA */ payerId?: string; /** * @description Surname of the PayPal account holder * @example Doe */ surname?: string; }