Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.19 KB

ListLoggedConsentsOK.md

File metadata and controls

28 lines (21 loc) · 1.19 KB

ListLoggedConsentsOK

Properties

Name Type Description Notes
consents List[ConsentDto]
last_evaluated_key str [optional]

Example

from affinidi_tdk_iota_client.models.list_logged_consents_ok import ListLoggedConsentsOK

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

# convert the object into a dict
list_logged_consents_ok_dict = list_logged_consents_ok_instance.to_dict()
# create an instance of ListLoggedConsentsOK from a dict
list_logged_consents_ok_from_dict = ListLoggedConsentsOK.from_dict(list_logged_consents_ok_dict)

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