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

13 lines (12 loc) 434 B
import type { Gender } from './Gender.js'; import type { PersonalName } from './PersonalName.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; }