| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| status | str | ||
| environment | str | ||
| expires_at | str | ||
| created_at | str |
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)