Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

CreateSubjectTokenRequest.md

File metadata and controls

30 lines (21 loc) · 1.16 KB

CreateSubjectTokenRequest

Properties

Name Type Description Notes
user_id str The ID of the user to impersonate.
context object The additional context to be included in the token, this can be used in custom JWT. [optional]

Example

from py_logto.models.create_subject_token_request import CreateSubjectTokenRequest

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

# convert the object into a dict
create_subject_token_request_dict = create_subject_token_request_instance.to_dict()
# create an instance of CreateSubjectTokenRequest from a dict
create_subject_token_request_from_dict = CreateSubjectTokenRequest.from_dict(create_subject_token_request_dict)

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