> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# CurrentScreenOptions

CurrentScreenOptions details.

```ts Example theme={null}
export interface CurrentScreenOptions {
  client: {
    id: string;
    metadata: Record<string, string> | null;
  } | null;
  organization: {
    id: string;
    metadata: Record<string, string> | null;
  } | null;
  prompt: {
    name: string;
  } | null;
  screen: {
    name: string;
  } | null;
  tenant: {
    enabledLocales: string[];
  } | null;
  transaction: {
    errors: TransactionError[] | null;
    state: string;
    locale: string;
  } | null;
  untrustedData: {
    authorizationParams: Record<string, string> | null;
  } | null;
}
```

## Properties

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

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

<ParamField body="prompt" type="name" />

<ParamField body="screen" type="name" />

<ParamField body="tenant" type="enabledLocales" />

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

<ParamField body="untrustedData" type="authorizationParams" />
