IPerson – GBG IDscan Documentation

IPerson

The data about the person which has been extrapolated from the provided identity documents.

Signature:

export interface IPerson 

Properties

PropertyTypeDescription
addressIPersonAddressThe person’s address
birthDatestringThe person’s Date of Birth
birthPlacestringThe person’s place of birth
firstNamestringThe person’s first name
fullNamestringThe person’s full name
genderstringThe person’s sex/gender
lastNamestringThe person’s last name
middleNamestringThe 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;

Was this page helpful?