# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class AdObjectFlagEnum(object):
"""Implementation of the 'AdObjectFlag' 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.
KDESTINATIONNOTFOUND: TODO: type description here.
KDISABLESUPPORTED: TODO: type description here.
"""
KEQUAL = 'kEqual'
KNOTEQUAL = 'kNotEqual'
KRESTOREPASSWORDREQUIRED = 'kRestorePasswordRequired'
KMOVEDONDESTINATION = 'kMovedOnDestination'
KDESTINATIONNOTFOUND = 'kDestinationNotFound'
KDISABLESUPPORTED = 'kDisableSupported'