| Name | Type | Description | Notes |
|---|---|---|---|
| sso_init_tokens | object | [optional] | |
| communities_actions | CommunitiesActions | ||
| country | str | ||
| guest_id | str | ||
| has_community_memberships | bool | ||
| is_active_creator | bool | ||
| is_restricted_session | bool | ||
| is_super_follow_subscriber | bool | ||
| language | str | ||
| one_factor_login_eligibility | OneFactorLoginEligibility | ||
| super_followers_count | int | ||
| super_follows_application_status | str | ||
| user_features | UserFeatures | ||
| user_id | str |
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)