Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

CertificateListResponse

Properties

Name Type Description Notes
data List[Certificate]
meta CertificateUploadResponseMeta

Example

from ecuapi.models.certificate_list_response import CertificateListResponse

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

# convert the object into a dict
certificate_list_response_dict = certificate_list_response_instance.to_dict()
# create an instance of CertificateListResponse from a dict
certificate_list_response_from_dict = CertificateListResponse.from_dict(certificate_list_response_dict)

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