Name | Type | Description | Notes |
---|---|---|---|
script | str | ||
environment_variables | Dict[str, str] | [optional] | |
context_sample | object | arbitrary | [optional] |
token_sample | GetJwtCustomizer200ResponseOneOf1TokenSample | [optional] |
from py_logto.models.get_jwt_customizer200_response import GetJwtCustomizer200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetJwtCustomizer200Response from a JSON string
get_jwt_customizer200_response_instance = GetJwtCustomizer200Response.from_json(json)
# print the JSON string representation of the object
print(GetJwtCustomizer200Response.to_json())
# convert the object into a dict
get_jwt_customizer200_response_dict = get_jwt_customizer200_response_instance.to_dict()
# create an instance of GetJwtCustomizer200Response from a dict
get_jwt_customizer200_response_from_dict = GetJwtCustomizer200Response.from_dict(get_jwt_customizer200_response_dict)