FindServersRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
endpoint_urlstr[optional]
locale_idsList[str][optional]
server_urisList[str][optional]

Example

from opcua_webapi.models.find_servers_request import FindServersRequest

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

# convert the object into a dict
find_servers_request_dict = find_servers_request_instance.to_dict()
# create an instance of FindServersRequest from a dict
find_servers_request_from_dict = FindServersRequest.from_dict(find_servers_request_dict)

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