Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
result | AuthorListResponseAllOfResult | [optional] |
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)