Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.88 KB

PrepareRequest.md

File metadata and controls

31 lines (24 loc) · 1.88 KB

PrepareRequest

Properties

Name Type Description Notes
connection_client_id str
query_id str
correlation_id str A unique, randomly generated identifier that correlates the request and response in the data-sharing request flow.
token_max_age float This is the lifetime of the signed request token during the data-sharing flow. [optional]
audience str [optional]

Example

from affinidi_tdk_iota_client.models.prepare_request import PrepareRequest

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

# convert the object into a dict
prepare_request_dict = prepare_request_instance.to_dict()
# create an instance of PrepareRequest from a dict
prepare_request_from_dict = PrepareRequest.from_dict(prepare_request_dict)

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