# CustomFieldViewRights

Represents the view rights for custom field values for a particular custom field definition.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**allUsers** | **boolean** | &#x60;TRUE&#x60; if custom field values of a custom field definition can be viewed by all users, &#x60;FALSE&#x60; if custom field values of a custom field definition can only be viewed by users with the specified roles. | [optional] [default to undefined]
**roles** | **Array&lt;string&gt;** | Lists the IDs of the roles that have view rights for the custom field values of a custom field definition if it is not accessible by all users. | [optional] [default to undefined]

## Example

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

const instance: CustomFieldViewRights = {
    allUsers,
    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)
