Name | Type | Description | Notes |
---|---|---|---|
response_header | ResponseHeader | [optional] | |
servers | List[ApplicationDescription] | [optional] |
from opcua_webapi.models.find_servers_response import FindServersResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FindServersResponse from a JSON string
find_servers_response_instance = FindServersResponse.from_json(json)
# print the JSON string representation of the object
print(FindServersResponse.to_json())
# convert the object into a dict
find_servers_response_dict = find_servers_response_instance.to_dict()
# create an instance of FindServersResponse from a dict
find_servers_response_from_dict = FindServersResponse.from_dict(find_servers_response_dict)