> ## Documentation Index
> Fetch the complete documentation index at: https://auth0-chore-management-api-autoupdate.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# UserMembers

```ts Example theme={null}
export interface UserMembers {
  id: string | null;
  email: string | null;
  username: string | null;
  phoneNumber: string | null;
  picture: string | null;
  enrolledFactors: Array<string> | null;
  enrolledEmails: Array<EnrolledEmail> | null;
  enrolledPhoneNumbers: Array<EnrolledPhoneNumber> | null;
  enrolledDevices: Array<EnrolledDevice> | null;
  organizations: Organizations[] | null;
  userMetadata: { [key: string]: string } | null;
  appMetadata: { [key: string]: string } | null;
}
```

## Properties

<ParamField body="appMetadata" type="{[key: string]: string; }" />

<ParamField body="email" type="string" />

<ParamField body="enrolledDevices" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/EnrolledDevice">EnrolledDevice</a></span>} />

<ParamField body="enrolledEmails" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/EnrolledEmail">EnrolledEmail</a></span>} />

<ParamField body="enrolledFactors" type="string[]" />

<ParamField body="enrolledPhoneNumbers" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/EnrolledPhoneNumber">EnrolledPhoneNumber</a></span>} />

<ParamField body="id" type="string" />

<ParamField body="organizations" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/Organizations">Organizations</a></span>} />

<ParamField body="phoneNumber" type="string" />

<ParamField body="picture" type="string" />

<ParamField body="userMetadata" type="{[key: string]: string; }" />

<ParamField body="username" type="string" />
