> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-fix-docs-5525.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# UntrustedDataMembers

```ts Example theme={null}
export interface UntrustedDataMembers {
  submittedFormData: { [key: string]: string | number | boolean | undefined | null } | null;
  authorizationParams: {
    login_hint?: string;
    screen_hint?: string;
    ui_locales?: string;
    [key: `ext-${string}`]: string;
  } | null;
}
```

## Properties

<ParamField body="authorizationParams" type="{ [key:  ext-${string} ]: string; login_hint?: string; screen_hint?: string; ui_locales?: string; }">
  <Expandable title="Parameters">
    <ParamField body="login_hint" type="string" />

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

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

    <ParamField body="key" type="ext-${string}" />
  </Expandable>
</ParamField>

<ParamField body="submittedFormData" type="{[key: string]: string | number | boolean | null | undefined; }">
  <Expandable title="Parameters">
    <ParamField body="[key]" type="string | number | boolean | undefined | null" />
  </Expandable>
</ParamField>
