Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 962 Bytes

File metadata and controls

29 lines (20 loc) · 962 Bytes

CtaClientEventInfo

Properties

Name Type Description Notes
action str

Example

from twitter_openapi_python_generated.models.cta_client_event_info import CtaClientEventInfo

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

# convert the object into a dict
cta_client_event_info_dict = cta_client_event_info_instance.to_dict()
# create an instance of CtaClientEventInfo from a dict
cta_client_event_info_from_dict = CtaClientEventInfo.from_dict(cta_client_event_info_dict)

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