EndpointDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
endpoint_urlstr[optional]
serverApplicationDescription[optional]
server_certificatebytearray[optional]
security_modeintLink to specification.[optional]
security_policy_uristr[optional]
user_identity_tokensList[UserTokenPolicy][optional]
transport_profile_uristr[optional]
security_levelint[optional] [default to 0]

Example

from opcua_webapi.models.endpoint_description import EndpointDescription

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

# convert the object into a dict
endpoint_description_dict = endpoint_description_instance.to_dict()
# create an instance of EndpointDescription from a dict
endpoint_description_from_dict = EndpointDescription.from_dict(endpoint_description_dict)

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