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

# TransactionMembers

```ts Example theme={null}
export interface TransactionMembers {
  state: string;
  locale: string;
  countryCode: CountryCode['code'] | null;
  countryPrefix: CountryCode['prefix'] | null;
  connectionStrategy: string | null;
  hasErrors: boolean;
  errors: Error[] | null;
  currentConnection: Connection | null;
  alternateConnections: (Connection | EnterpriseConnection)[] | null;
}
```

## Properties

<ParamField body="alternateConnections" type={<span><a href="#connection">[Connection]</a> | <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/EnterpriseConnection">[EnterpriseConnection][]</a></span>} />

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

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

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

<ParamField body="currentConnection" type={<span><a href="#connection">[Connection]</a></span>} />

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

<ParamField body="hasErrors" type="boolean" />

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

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

## Connection

```ts theme={null}
export interface Connection {
  name: string;
  strategy: string;
  metadata?: Record<string, string>;
}
```

### Properties

<ParamField body="metadata?" type="Record<string, string>" />

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

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

## EnterpriseConnection

```ts theme={null}
export interface EnterpriseConnection extends Connection {
  options: {
    iconUrl?: string;
    displayName?: string;
    showAsButton: boolean;
  };
}
```

### Properties

<ParamField body="metadata?" type="Record<string, string>" />

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

<ParamField body="options" type="object">
  <Expandable title="properties">
    <ParamField body="displayName?" type="string" />

    <ParamField body="iconUrl?" type="string" />

    <ParamField body="showAsButton" type="boolean" />
  </Expandable>
</ParamField>

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

## PasswordPolicy

```ts theme={null}
export interface PasswordPolicy {
  enabled?: boolean;
  minLength?: number;
  policy: 'none' | 'low' | 'fair' | 'good' | 'excellent';
  passwordSecurityInfo?: PasswordComplexityRule[];
}
```

### Properties

<ParamField body="enabled?" type="boolean" />

<ParamField body="minLength?" type="number" />

<ParamField body="passwordSecurityInfo?" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/PasswordComplexityRule">[PasswordComplexityRule][]</a></span>} />

<ParamField body="policy" type="&#x22;none&#x22; | &#x22;low&#x22; | &#x22;fair&#x22; | &#x22;good&#x22; | &#x22;excellent&#x22;" />
