Source code for models.privileges_type_view_privileges_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class PrivilegesTypeViewPrivilegesEnum(object): """Implementation of the 'PrivilegesType_ViewPrivileges' enum. Specifies if all, none or specific views are allowed to be accessed. Specifies if all, none or specific views are allowed to be accessed. kNone - None of the views have access. kAll - All the views have access. kSpecific - Only specific views have access. Attributes: KNONE: TODO: type description here. KALL: TODO: type description here. KSPECIFIC: TODO: type description here. """ KNONE = 'kNone' KALL = 'kAll' KSPECIFIC = 'kSpecific'