# GroupRole

Represents a group role. A group role, or group role name, is the role of a group member within the group - for example, money collector. One member could have many roles within a group.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key of the group role name, which is auto generated, and unique. | [optional] [readonly] [default to undefined]
**groupRoleNameKey** | **string** | The group role name key. | [default to undefined]
**roleName** | **string** | The group role name. | [optional] [readonly] [default to undefined]
**roleNameId** | **string** | The group role name ID. | [optional] [readonly] [default to undefined]

## Example

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

const instance: GroupRole = {
    encodedKey,
    groupRoleNameKey,
    roleName,
    roleNameId,
};
```

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