Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

SocialContextLandingUrl.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

SocialContextLandingUrl

Properties

Name Type Description Notes
url str [optional]
url_type str [optional]
urt_endpoint_options UrtEndpointOptions [optional]

Example

from twitter_openapi_python_generated.models.social_context_landing_url import SocialContextLandingUrl

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

# convert the object into a dict
social_context_landing_url_dict = social_context_landing_url_instance.to_dict()
# create an instance of SocialContextLandingUrl from a dict
social_context_landing_url_from_dict = SocialContextLandingUrl.from_dict(social_context_landing_url_dict)

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