Skip to content

Latest commit

History

History
42 lines (33 loc) · 1.42 KB

File metadata and controls

42 lines (33 loc) · 1.42 KB

Session

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

fromtwitter_openapi_python_generated.models.sessionimportSession# TODO update the JSON string belowjson="{}"# create an instance of Session from a JSON stringsession_instance=Session.from_json(json)
# print the JSON string representation of the objectprint(Session.to_json())
# convert the object into a dictsession_dict=session_instance.to_dict()
# create an instance of Session from a dictsession_from_dict=Session.from_dict(session_dict)

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