You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
nonce
str
A randomly generated value that is added in the request and response to prevent replay attacks.
redirect_uri
str
List of allowed URLs to redirect users, including the response from the request. This is required if the selected data-sharing mode is Redirect.
configuration_id
str
ID of the Affinidi Iota Framework configuration.
mode
str
Determines whether to handle the data-sharing request using the WebSocket or Redirect flow.
Example
fromaffinidi_tdk_iota_client.models.initiate_data_sharing_request_inputimportInitiateDataSharingRequestInput# TODO update the JSON string belowjson="{}"# create an instance of InitiateDataSharingRequestInput from a JSON stringinitiate_data_sharing_request_input_instance=InitiateDataSharingRequestInput.from_json(json)
# print the JSON string representation of the objectprintInitiateDataSharingRequestInput.to_json()
# convert the object into a dictinitiate_data_sharing_request_input_dict=initiate_data_sharing_request_input_instance.to_dict()
# create an instance of InitiateDataSharingRequestInput from a dictinitiate_data_sharing_request_input_from_dict=InitiateDataSharingRequestInput.from_dict(initiate_data_sharing_request_input_dict)