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
Determines whether to handle the data-sharing request using the WebSocket or Redirect flow.
[optional] [default to 'websocket']
redirect_uris
List[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.
[optional]
enable_idv_providers
bool
Enables identity verification from user with a 3rd-party provider when a verified identity document is not found.
[optional]
Example
fromaffinidi_tdk_iota_client.models.create_iota_configuration_inputimportCreateIotaConfigurationInput# TODO update the JSON string belowjson="{}"# create an instance of CreateIotaConfigurationInput from a JSON stringcreate_iota_configuration_input_instance=CreateIotaConfigurationInput.from_json(json)
# print the JSON string representation of the objectprintCreateIotaConfigurationInput.to_json()
# convert the object into a dictcreate_iota_configuration_input_dict=create_iota_configuration_input_instance.to_dict()
# create an instance of CreateIotaConfigurationInput from a dictcreate_iota_configuration_input_from_dict=CreateIotaConfigurationInput.from_dict(create_iota_configuration_input_dict)