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 additional context to be included in the token, this can be used in custom JWT.
[optional]
Example
frompy_logto.models.create_subject_token_requestimportCreateSubjectTokenRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateSubjectTokenRequest from a JSON stringcreate_subject_token_request_instance=CreateSubjectTokenRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateSubjectTokenRequest.to_json())
# convert the object into a dictcreate_subject_token_request_dict=create_subject_token_request_instance.to_dict()
# create an instance of CreateSubjectTokenRequest from a dictcreate_subject_token_request_from_dict=CreateSubjectTokenRequest.from_dict(create_subject_token_request_dict)