Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 798 Bytes

File metadata and controls

29 lines (20 loc) · 798 Bytes

JwkUse

Properties

Name Type Description Notes
use JwkUseType [optional]

Example

from okta.models.jwk_use import JwkUse

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

# convert the object into a dict
jwk_use_dict = jwk_use_instance.to_dict()
# create an instance of JwkUse from a dict
jwk_use_from_dict = JwkUse.from_dict(jwk_use_dict)

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