Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

CertificateUploadResponseData

Properties

Name Type Description Notes
id str
name str
expires_at str
subject str

Example

from ecuapi.models.certificate_upload_response_data import CertificateUploadResponseData

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

# convert the object into a dict
certificate_upload_response_data_dict = certificate_upload_response_data_instance.to_dict()
# create an instance of CertificateUploadResponseData from a dict
certificate_upload_response_data_from_dict = CertificateUploadResponseData.from_dict(certificate_upload_response_data_dict)

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