| Name | Type | Description | Notes |
|---|---|---|---|
| use | JwkUseType | [optional] |
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)