Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 869 Bytes

File metadata and controls

29 lines (20 loc) · 869 Bytes

UnifiedCard

Properties

Name Type Description Notes
card_fetch_state str

Example

from twitter_openapi_python_generated.models.unified_card import UnifiedCard

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

# convert the object into a dict
unified_card_dict = unified_card_instance.to_dict()
# create an instance of UnifiedCard from a dict
unified_card_from_dict = UnifiedCard.from_dict(unified_card_dict)

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