Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 952 Bytes

File metadata and controls

29 lines (20 loc) · 952 Bytes

QuotedRefResult

Properties

Name Type Description Notes
result TweetUnion [optional]

Example

from twitter_openapi_python_generated.models.quoted_ref_result import QuotedRefResult

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

# convert the object into a dict
quoted_ref_result_dict = quoted_ref_result_instance.to_dict()
# create an instance of QuotedRefResult from a dict
quoted_ref_result_from_dict = QuotedRefResult.from_dict(quoted_ref_result_dict)

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