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