Source code for models_v2.status_25_enum

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

[docs]class Status25Enum(object): """Implementation of the 'Status25' enum. Validation Status of the certificate. Attributes: VALID: TODO: type description here. EXPIRED: TODO: type description here. REVOKED: TODO: type description here. UNKNOWN: TODO: type description here. """ VALID = 'Valid' EXPIRED = 'Expired' REVOKED = 'Revoked' UNKNOWN = 'Unknown'