Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

CommunityPinActionResult.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

CommunityPinActionResult

Properties

Name Type Description Notes
typename TypeName

Example

from twitter_openapi_python_generated.models.community_pin_action_result import CommunityPinActionResult

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

# convert the object into a dict
community_pin_action_result_dict = community_pin_action_result_instance.to_dict()
# create an instance of CommunityPinActionResult from a dict
community_pin_action_result_from_dict = CommunityPinActionResult.from_dict(community_pin_action_result_dict)

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