Source code for models.flag_enum

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

[docs]class FlagEnum(object): """Implementation of the 'Flag' enum. TODO: type enum description here. Attributes: KERROR: TODO: type description here. KTRUNCATED: TODO: type description here. KCSV: TODO: type description here. """ KERROR = 'kError' KTRUNCATED = 'kTruncated' KCSV = 'kCSV'