Source code for models_v2.csr_key_type_1_enum

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

[docs]class CsrKeyType1Enum(object): """Implementation of the 'CsrKeyType1' enum. Specifies the csr key type. Attributes: RSA: TODO: type description here. ECDSA: TODO: type description here. """ RSA = 'rsa' ECDSA = 'ecdsa'