# LookupResult

Will be populated when `state` is `IDENTITY_FOUND` Depending on the confidence level, some fields may be missing

## Example Usage

```typescript
import { LookupResult } from "@apexfintechsolutions/ascend-sdk/models/components";

let value: LookupResult = {};
```

## Fields

| Field                                                                                                                | Type                                                                                                                 | Required                                                                                                             | Description                                                                                                          | Example                                                                                                              |
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| `addresses`                                                                                                          | [components.PostalAddress](../../models/components/postaladdress.md)[]                                               | :heavy_minus_sign:                                                                                                   | Addresses associated with the identity                                                                               | [<br/>{<br/>"address_lines": [<br/>"123 Main St"<br/>],<br/>"locality": "New York",<br/>"postal_code": "10001",<br/>"region_code": "US"<br/>}<br/>] |
| `birthDate`                                                                                                          | [components.IdentityLookupBirthDate](../../models/components/identitylookupbirthdate.md)                             | :heavy_minus_sign:                                                                                                   | Birth date of the identity                                                                                           | {<br/>"day": 1,<br/>"month": 1,<br/>"year": 1990<br/>}                                                               |
| `emails`                                                                                                             | *string*[]                                                                                                           | :heavy_minus_sign:                                                                                                   | Email addresses associated with the identity                                                                         | [<br/>"john@hotmail.com",<br/>"johndoe@gmail.com"<br/>]                                                              |
| `familyName`                                                                                                         | *string*                                                                                                             | :heavy_minus_sign:                                                                                                   | Family name of the identity                                                                                          | Doe                                                                                                                  |
| `givenName`                                                                                                          | *string*                                                                                                             | :heavy_minus_sign:                                                                                                   | Given name of the identity                                                                                           | John                                                                                                                 |
| `identification`                                                                                                     | [components.Identification](../../models/components/identification.md)[]                                             | :heavy_minus_sign:                                                                                                   | Identification documents associated with the identity                                                                | [<br/>{<br/>"region_code": "US",<br/>"type": "SSN",<br/>"value": "123-45-6789"<br/>}<br/>]                           |
| `middleName`                                                                                                         | *string*                                                                                                             | :heavy_minus_sign:                                                                                                   | Middle name of the identity                                                                                          | Henry                                                                                                                |
| `phoneNumber`                                                                                                        | [components.IdentityLookupLookupResultPhoneNumber](../../models/components/identitylookuplookupresultphonenumber.md) | :heavy_minus_sign:                                                                                                   | Phone number associated with the identity                                                                            | {<br/>"e164_number": "+14155552671"<br/>}                                                                            |