Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

FindServersRequest.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

FindServersRequest

Properties

Name Type Description Notes
request_header RequestHeader [optional]
endpoint_url str [optional]
locale_ids List[str] [optional]
server_uris List[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]