Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 969 Bytes

File metadata and controls

34 lines (25 loc) · 969 Bytes

Certificate

Properties

Name Type Description Notes
id str
name str
status str
environment str
expires_at str
created_at str

Example

from ecuapi.models.certificate import Certificate

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

# convert the object into a dict
certificate_dict = certificate_instance.to_dict()
# create an instance of Certificate from a dict
certificate_from_dict = Certificate.from_dict(certificate_dict)

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