Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 982 Bytes

File metadata and controls

33 lines (24 loc) · 982 Bytes

PostCta

Properties

Name Type Description Notes
action_url str
background_color str
show_chevron bool
stroke_color str
title_text PostCtaTitleText

Example

from twitter_openapi_python_generated.models.post_cta import PostCta

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

# convert the object into a dict
post_cta_dict = post_cta_instance.to_dict()
# create an instance of PostCta from a dict
post_cta_from_dict = PostCta.from_dict(post_cta_dict)

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