Source code for models_v2.type_37_enum

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

[docs]class Type37Enum(object): """Implementation of the 'Type37' enum. Specifies protocol access for view. Attributes: NFS: TODO: type description here. SMB: TODO: type description here. S3: TODO: type description here. SWIFT: TODO: type description here. """ NFS = 'NFS' SMB = 'SMB' S3 = 'S3' SWIFT = 'Swift'