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

# ClientMembers

```ts Example theme={null}
export interface ClientMembers {
  id: string;
  name: string;
  logoUrl: string | null;
  description: string | null;
  metadata: { [key: string]: string } | null;
}
```

## Properties

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

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

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

<ParamField body="metadata" type="{[key: string]: string; }">
  <Expandable title="Parameters">
    <ParamField body="[key]" type="string">
      Optional key-value pairs for storing custom metadata.
    </ParamField>
  </Expandable>
</ParamField>

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