pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 434 B
TypeScript
import type { PersonalName } from './PersonalName.js';
import type { Gender } from './Gender.js';
/** @description Object containing personal information like name, date of birth and gender. */
export interface PersonalInformation {
/**
* @description The date of birth of the customer of the recipient of the loan.
* Format YYYYMMDD
*/
dateOfBirth?: string;
gender?: Gender;
name?: PersonalName;
}