Name | Type | Description | Notes |
---|---|---|---|
token_type | object | The token type to test the JWT customizer for. | [optional] |
payload | TestJwtCustomizerRequestPayload | [optional] | |
environment_variables | Dict[str, str] | [optional] | |
script | str | ||
token | GetJwtCustomizer200ResponseOneOf1TokenSample | ||
context | GetJwtCustomizer200ResponseOneOfContextSample |
from py_logto.models.test_jwt_customizer_request import TestJwtCustomizerRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TestJwtCustomizerRequest from a JSON string
test_jwt_customizer_request_instance = TestJwtCustomizerRequest.from_json(json)
# print the JSON string representation of the object
print(TestJwtCustomizerRequest.to_json())
# convert the object into a dict
test_jwt_customizer_request_dict = test_jwt_customizer_request_instance.to_dict()
# create an instance of TestJwtCustomizerRequest from a dict
test_jwt_customizer_request_from_dict = TestJwtCustomizerRequest.from_dict(test_jwt_customizer_request_dict)