Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

File metadata and controls

34 lines (25 loc) · 1.27 KB

SocialContextUnion

Properties

Name Type Description Notes
context_type str [optional]
landing_url SocialContextLandingUrl [optional]
text str [optional]
type SocialContextUnionType [optional]
functionality_type str [optional]
topic TopicContext [optional]

Example

from twitter_openapi_python_generated.models.social_context_union import SocialContextUnion

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

# convert the object into a dict
social_context_union_dict = social_context_union_instance.to_dict()
# create an instance of SocialContextUnion from a dict
social_context_union_from_dict = SocialContextUnion.from_dict(social_context_union_dict)

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