Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

File metadata and controls

33 lines (24 loc) · 1.06 KB

CoverCta

Properties

Name Type Description Notes
text str [optional]
button_style str [optional]
callbacks List[Callback]
client_event_info CtaClientEventInfo
cta_behavior TimelineCoverBehavior

Example

from twitter_openapi_python_generated.models.cover_cta import CoverCta

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

# convert the object into a dict
cover_cta_dict = cover_cta_instance.to_dict()
# create an instance of CoverCta from a dict
cover_cta_from_dict = CoverCta.from_dict(cover_cta_dict)

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