Source code for models_v2.category_1_enum

# -*- coding: utf-8 -*-

[docs]class Category1Enum(object): """Implementation of the 'Category1' enum. Specifies the category of the View. Attributes: BACKUPTARGET: TODO: type description here. FILESERVICES: TODO: type description here. OBJECTSERVICES: TODO: type description here. """ BACKUPTARGET = 'BackupTarget' FILESERVICES = 'FileServices' OBJECTSERVICES = 'ObjectServices'