/* tslint:disable */ /* eslint-disable */ /** * customfieldsets * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the view rights for custom field values for a particular custom field definition. */ export interface CustomFieldViewRights { /** * `TRUE` if custom field values of a custom field definition can be viewed by all users, `FALSE` if custom field values of a custom field definition can only be viewed by users with the specified roles. */ allUsers?: boolean; /** * 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. */ roles?: Array; }