Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 988 Bytes

File metadata and controls

29 lines (20 loc) · 988 Bytes

TimelineClearCache

Properties

Name Type Description Notes
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_clear_cache import TimelineClearCache

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

# convert the object into a dict
timeline_clear_cache_dict = timeline_clear_cache_instance.to_dict()
# create an instance of TimelineClearCache from a dict
timeline_clear_cache_from_dict = TimelineClearCache.from_dict(timeline_clear_cache_dict)

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