Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 938 Bytes

AuthorRequest.md

File metadata and controls

30 lines (21 loc) · 938 Bytes

AuthorRequest

The author request.

Properties

Name Type Description Notes
name str The name of the author, e.g. `John Smith`.

Example

from wordlift_client.models.author_request import AuthorRequest

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

# convert the object into a dict
author_request_dict = author_request_instance.to_dict()
# create an instance of AuthorRequest from a dict
author_request_from_dict = AuthorRequest.from_dict(author_request_dict)

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