# Role

Represents a user role.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**access** | [**BaseUserAccess**](BaseUserAccess.md) |  | [optional] [default to undefined]
**creationDate** | **string** | The date when the role was created in UTC. | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated automatically, globally unique. | [optional] [readonly] [default to undefined]
**id** | **string** | The ID of the role, which can be generated and customized, but must be unique. | [optional] [default to undefined]
**lastModifiedDate** | **string** | The last time the role was modified in UTC. | [optional] [readonly] [default to undefined]
**name** | **string** | The unique name of the role. | [default to undefined]
**notes** | **string** | The notes about the role. | [optional] [default to undefined]

## Example

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

const instance: Role = {
    access,
    creationDate,
    encodedKey,
    id,
    lastModifiedDate,
    name,
    notes,
};
```

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