Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

TimelineCoverBehavior

Properties

Name Type Description Notes
type str
url TimelineCoverBehaviorUrl [optional]

Example

from twitter_openapi_python_generated.models.timeline_cover_behavior import TimelineCoverBehavior

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

# convert the object into a dict
timeline_cover_behavior_dict = timeline_cover_behavior_instance.to_dict()
# create an instance of TimelineCoverBehavior from a dict
timeline_cover_behavior_from_dict = TimelineCoverBehavior.from_dict(timeline_cover_behavior_dict)

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