Source code for models_v2.site_restore_type_enum

# -*- coding: utf-8 -*-

[docs]class SiteRestoreTypeEnum(object): """Implementation of the 'SiteRestoreType' enum. Specifies whether site restore is full or granular. Attributes: KFULL: TODO: type description here. KPARTIAL: TODO: type description here. """ KFULL = 'kFull' KPARTIAL = 'kPartial'