Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.02 KB

JsonWebKeySetDto.md

File metadata and controls

27 lines (20 loc) · 1.02 KB

JsonWebKeySetDto

Properties

Name Type Description Notes
keys List[JsonWebKeyDto]

Example

from affinidi_tdk_iam_client.models.json_web_key_set_dto import JsonWebKeySetDto

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

# convert the object into a dict
json_web_key_set_dto_dict = json_web_key_set_dto_instance.to_dict()
# create an instance of JsonWebKeySetDto from a dict
json_web_key_set_dto_from_dict = JsonWebKeySetDto.from_dict(json_web_key_set_dto_dict)

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