Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 946 Bytes

HashResponse.md

File metadata and controls

30 lines (21 loc) · 946 Bytes

HashResponse

Properties

Name Type Description Notes
status bool [optional]
result HashResponseAllOfResult [optional]

Example

from qaseio.models.hash_response import HashResponse

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

# convert the object into a dict
hash_response_dict = hash_response_instance.to_dict()
# create an instance of HashResponse from a dict
hash_response_form_dict = hash_response.from_dict(hash_response_dict)

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