Name |
Type |
Description |
Notes |
vp_definition |
str |
The presentation definition describing the data requirement that must be satisfied by the user. The value is in a JSON stringify format. |
[optional] |
description |
str |
An optional description of what the query is used for. |
[optional] |
from affinidi_tdk_iota_client.models.update_pex_query_input import UpdatePexQueryInput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdatePexQueryInput from a JSON string
update_pex_query_input_instance = UpdatePexQueryInput.from_json(json)
# print the JSON string representation of the object
print UpdatePexQueryInput.to_json()
# convert the object into a dict
update_pex_query_input_dict = update_pex_query_input_instance.to_dict()
# create an instance of UpdatePexQueryInput from a dict
update_pex_query_input_from_dict = UpdatePexQueryInput.from_dict(update_pex_query_input_dict)
[Back to Model list] [Back to API list] [Back to README]