Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 938 Bytes

AuthorResponse.md

File metadata and controls

30 lines (21 loc) · 938 Bytes

AuthorResponse

Properties

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

Example

from qaseio.models.author_response import AuthorResponse

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

# convert the object into a dict
author_response_dict = author_response_instance.to_dict()
# create an instance of AuthorResponse from a dict
author_response_form_dict = author_response.from_dict(author_response_dict)

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