/* tslint:disable */ /* eslint-disable */ /** * customfields * 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 edit rights for custom field values for a particular custom field definition. */ export interface CustomFieldEditRights { /** * `TRUE` if custom field values of a custom field definition can be edited by all users, `FALSE` if custom field values of a custom field definition can only be edited by users with the specified roles. */ allUsers?: boolean; /** * The list of IDs of the roles that have edit rights for the custom field values of a custom field definition if it is not accessible by all users. */ roles?: Array; }