SearchByRawQuery

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
search_timelineSearchTimeline

Example

from twitter_openapi_python_generated.models.search_by_raw_query import SearchByRawQuery

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

# convert the object into a dict
search_by_raw_query_dict = search_by_raw_query_instance.to_dict()
# create an instance of SearchByRawQuery from a dict
search_by_raw_query_from_dict = SearchByRawQuery.from_dict(search_by_raw_query_dict)

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