# GroupMember

Represents a group member. A group member is person that uses the services of the bank and is member of a group. Group members may have associated information, such as their client key and a list of roles they have within the group.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**clientKey** | **string** | The encoded key of the client assigned as member of the group. | [default to undefined]
**roles** | [**Array&lt;GroupRole&gt;**](GroupRole.md) | The group role name associated with a group member. | [optional] [default to undefined]

## Example

```typescript
import { GroupMember } from './api';

const instance: GroupMember = {
    clientKey,
    roles,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
