CoverCta

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
textstr[optional]
button_stylestr[optional]
callbacksList[Callback]
client_event_infoCtaClientEventInfo
cta_behaviorTimelineCoverBehavior

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]