Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

TimelineShowCover

Properties

Name Type Description Notes
client_event_info ClientEventInfo
cover TimelineHalfCover
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_show_cover import TimelineShowCover

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

# convert the object into a dict
timeline_show_cover_dict = timeline_show_cover_instance.to_dict()
# create an instance of TimelineShowCover from a dict
timeline_show_cover_from_dict = TimelineShowCover.from_dict(timeline_show_cover_dict)

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