Source code for models.document_type_enum


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

[docs]class DocumentTypeEnum(object): """Implementation of the 'DocumentTypeEnum' enum. Specifies the type of OneDrive document(file/folder). Specifies the OneDrive document type. 'kFile' specifies a file. 'kFolder' specifies a folder. Attributes: kFILE: TODO: type description here. KFOLDER: TODO: type description here. """ KFILE = 'kFile' KFOLDER = 'kFolder'