Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1014 Bytes

File metadata and controls

29 lines (20 loc) · 1014 Bytes

PostCtaUserResults

Properties

Name Type Description Notes
result PostCtaUserResultsResult

Example

from twitter_openapi_python_generated.models.post_cta_user_results import PostCtaUserResults

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

# convert the object into a dict
post_cta_user_results_dict = post_cta_user_results_instance.to_dict()
# create an instance of PostCtaUserResults from a dict
post_cta_user_results_from_dict = PostCtaUserResults.from_dict(post_cta_user_results_dict)

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