# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class SearchResultFlagEnum(object):
    """Implementation of the 'SearchResultFlag' enum.
    TODO: type enum description here.
    Attributes:
        KEQUAL: TODO: type description here.
        KNOTEQUAL: TODO: type description here.
        KRESTOREPASSWORDREQUIRED: TODO: type description here.
        KMOVEDONDESTINATION: TODO: type description here.
        KDISABLESUPPORTED: TODO: type description here.
    """
    KEQUAL = 'kEqual'
    KNOTEQUAL = 'kNotEqual'
    KRESTOREPASSWORDREQUIRED = 'kRestorePasswordRequired'
    KMOVEDONDESTINATION = 'kMovedOnDestination'
    KDISABLESUPPORTED = 'kDisableSupported'