The data about the person which has been extrapolated from the provided identity documents.
Signature:
export interface IPerson
Properties
Property | Type | Description |
---|---|---|
address | IPersonAddress | The person’s address |
birthDate | string | The person’s Date of Birth |
birthPlace | string | The person’s place of birth |
firstName | string | The person’s first name |
fullName | string | The person’s full name |
gender | string | The person’s sex/gender |
lastName | string | The person’s last name |
middleName | string | The person’s middle name(s) |
IPerson.address property
The person’s address
Signature:
address: IPersonAddress;
IPerson.birthDate property
The person’s Date of Birth
Signature:
birthDate?: string;
IPerson.firstName property
The person’s first name
Signature:
firstName?: string;
IPerson.fullName property
The person’s full name
Signature:
fullName?: string;
IPerson.gender property
The person’s sex/gender
Signature:
gender?: string;
IPerson.lastName property
The person’s last name
Signature:
lastName?: string;
IPerson.middleName property
The person’s middle name(s)
Signature:
middleName?: string;