Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

SignedSoftwareCertificate.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

SignedSoftwareCertificate

Properties

Name Type Description Notes
certificate_data bytearray [optional]
signature bytearray [optional]

Example

from opcua_webapi.models.signed_software_certificate import SignedSoftwareCertificate

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

# convert the object into a dict
signed_software_certificate_dict = signed_software_certificate_instance.to_dict()
# create an instance of SignedSoftwareCertificate from a dict
signed_software_certificate_from_dict = SignedSoftwareCertificate.from_dict(signed_software_certificate_dict)

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