SignedSoftwareCertificate
August 30, 2025 ยท View on GitHub
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)