Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

OAuth2ClientJsonWebKeyRsaResponse

An RSA signing key

Properties

Name Type Description Notes
e str RSA key value (exponent) for key binding [optional]
n str RSA key value (modulus) for key binding [optional]

Example

from okta.models.o_auth2_client_json_web_key_rsa_response import OAuth2ClientJsonWebKeyRsaResponse

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

# convert the object into a dict
o_auth2_client_json_web_key_rsa_response_dict = o_auth2_client_json_web_key_rsa_response_instance.to_dict()
# create an instance of OAuth2ClientJsonWebKeyRsaResponse from a dict
o_auth2_client_json_web_key_rsa_response_from_dict = OAuth2ClientJsonWebKeyRsaResponse.from_dict(o_auth2_client_json_web_key_rsa_response_dict)

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