Session

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
sso_init_tokensobject[optional]
communities_actionsCommunitiesActions
countrystr
guest_idstr
has_community_membershipsbool
is_active_creatorbool
is_restricted_sessionbool
is_super_follow_subscriberbool
languagestr
one_factor_login_eligibilityOneFactorLoginEligibility
super_followers_countint
super_follows_application_statusstr
user_featuresUserFeatures
user_idstr

Example

from twitter_openapi_python_generated.models.session import Session

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

# convert the object into a dict
session_dict = session_instance.to_dict()
# create an instance of Session from a dict
session_from_dict = Session.from_dict(session_dict)

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