Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.86 KB

File metadata and controls

27 lines (20 loc) · 1.86 KB

JsonWebKey

Properties

Name Type Description Notes
keys List[JsonWebKeyKeysInner] The value of the "keys" parameter is an array of JSON Web Key (JWK) values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired. [optional]

Example

from affinidi_tdk_login_configuration_client.models.json_web_key import JsonWebKey

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

# convert the object into a dict
json_web_key_dict = json_web_key_instance.to_dict()
# create an instance of JsonWebKey from a dict
json_web_key_from_dict = JsonWebKey.from_dict(json_web_key_dict)

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