Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 943 Bytes

File metadata and controls

29 lines (20 loc) · 943 Bytes

CertificateError

Properties

Name Type Description Notes
error CertificateErrorError

Example

from ecuapi.models.certificate_error import CertificateError

# TODO update the JSON string below
json = "{}"
# create an instance of CertificateError from a JSON string
certificate_error_instance = CertificateError.from_json(json)
# print the JSON string representation of the object
print(CertificateError.to_json())

# convert the object into a dict
certificate_error_dict = certificate_error_instance.to_dict()
# create an instance of CertificateError from a dict
certificate_error_from_dict = CertificateError.from_dict(certificate_error_dict)

[Back to Model list] [Back to API list] [Back to README]