You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ID of the Application. It is displayed in your Talon.One deployment URL.
Example
fromtalon_one.models.generate_user_session_summaryimportGenerateUserSessionSummary# TODO update the JSON string belowjson="{}"# create an instance of GenerateUserSessionSummary from a JSON stringgenerate_user_session_summary_instance=GenerateUserSessionSummary.from_json(json)
# print the JSON string representation of the objectprint(GenerateUserSessionSummary.to_json())
# convert the object into a dictgenerate_user_session_summary_dict=generate_user_session_summary_instance.to_dict()
# create an instance of GenerateUserSessionSummary from a dictgenerate_user_session_summary_from_dict=GenerateUserSessionSummary.from_dict(generate_user_session_summary_dict)