Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

ItemResult

Properties

Name Type Description Notes
typename TypeName [optional]
result TweetUnion [optional]

Example

from twitter_openapi_python_generated.models.item_result import ItemResult

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

# convert the object into a dict
item_result_dict = item_result_instance.to_dict()
# create an instance of ItemResult from a dict
item_result_from_dict = ItemResult.from_dict(item_result_dict)

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