Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 955 Bytes

File metadata and controls

31 lines (22 loc) · 955 Bytes

ServerResponse

Properties

Name Type Description Notes
status float
data str
signature str [optional]

Example

from dappserver_server_sdk.models.server_response import ServerResponse

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

# convert the object into a dict
server_response_dict = server_response_instance.to_dict()
# create an instance of ServerResponse from a dict
server_response_form_dict = server_response.from_dict(server_response_dict)

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