Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

PostCtaUserResultsResult

Properties

Name Type Description Notes
typename TypeName
avatar PostCtaUserResultsAvatar

Example

from twitter_openapi_python_generated.models.post_cta_user_results_result import PostCtaUserResultsResult

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

# convert the object into a dict
post_cta_user_results_result_dict = post_cta_user_results_result_instance.to_dict()
# create an instance of PostCtaUserResultsResult from a dict
post_cta_user_results_result_from_dict = PostCtaUserResultsResult.from_dict(post_cta_user_results_result_dict)

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