Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.15 KB

ListPexQueriesOK.md

File metadata and controls

28 lines (21 loc) · 1.15 KB

ListPexQueriesOK

Properties

Name Type Description Notes
pex_queries List[PexQueryDto]
last_evaluated_key str [optional]

Example

from affinidi_tdk_iota_client.models.list_pex_queries_ok import ListPexQueriesOK

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

# convert the object into a dict
list_pex_queries_ok_dict = list_pex_queries_ok_instance.to_dict()
# create an instance of ListPexQueriesOK from a dict
list_pex_queries_ok_from_dict = ListPexQueriesOK.from_dict(list_pex_queries_ok_dict)

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