SignedSoftwareCertificate

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
certificate_databytearray[optional]
signaturebytearray[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]