Source code for models.status_get_tenants_enum

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

[docs]class StatusGetTenantsEnum(object): """Implementation of the 'status_GetTenants' enum. TODO: type enum description here. Attributes: ACTIVE: TODO: type description here. DEACTIVATED: TODO: type description here. DELETED: TODO: type description here. """ ACTIVE = 'Active' DEACTIVATED = 'Deactivated' DELETED = 'Deleted'