Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.32 KB

File metadata and controls

37 lines (28 loc) · 1.32 KB

BirdwatchPivot

Properties

Name Type Description Notes
call_to_action BirdwatchPivotCallToAction [optional]
destination_url str
footer BirdwatchPivotFooter
icon_type str
note BirdwatchPivotNote
shorttitle str
subtitle BirdwatchPivotSubtitle
title str
visual_style str [optional]

Example

from twitter_openapi_python_generated.models.birdwatch_pivot import BirdwatchPivot

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

# convert the object into a dict
birdwatch_pivot_dict = birdwatch_pivot_instance.to_dict()
# create an instance of BirdwatchPivot from a dict
birdwatch_pivot_from_dict = BirdwatchPivot.from_dict(birdwatch_pivot_dict)

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