Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.21 KB

File metadata and controls

35 lines (26 loc) · 1.21 KB

TimelineHalfCover

Properties

Name Type Description Notes
dismissible bool
half_cover_display_type str
impression_callbacks List[Callback]
primary_cover_cta CoverCta
primary_text Text
secondary_text Text
type str

Example

from twitter_openapi_python_generated.models.timeline_half_cover import TimelineHalfCover

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

# convert the object into a dict
timeline_half_cover_dict = timeline_half_cover_instance.to_dict()
# create an instance of TimelineHalfCover from a dict
timeline_half_cover_from_dict = TimelineHalfCover.from_dict(timeline_half_cover_dict)

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