Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

WordRequest.md

File metadata and controls

30 lines (21 loc) · 890 Bytes

WordRequest

Properties

Name Type Description Notes
bias int The bias.
word str The actual word.

Example

from wordlift_client.models.word_request import WordRequest

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

# convert the object into a dict
word_request_dict = word_request_instance.to_dict()
# create an instance of WordRequest from a dict
word_request_from_dict = WordRequest.from_dict(word_request_dict)

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