Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

FindServersResponse.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

FindServersResponse

Properties

Name Type Description Notes
response_header ResponseHeader [optional]
servers List[ApplicationDescription] [optional]

Example

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)

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