Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

AuthorListResponse.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

AuthorListResponse

Properties

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

Example

from qaseio.models.author_list_response import AuthorListResponse

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

# convert the object into a dict
author_list_response_dict = author_list_response_instance.to_dict()
# create an instance of AuthorListResponse from a dict
author_list_response_form_dict = author_list_response.from_dict(author_list_response_dict)

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