Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

File metadata and controls

29 lines (20 loc) · 977 Bytes

SearchByRawQuery

Properties

Name Type Description Notes
search_timeline SearchTimeline

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]