Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 4.57 KB

CreateIotaConfigurationInput.md

File metadata and controls

37 lines (30 loc) · 4.57 KB

CreateIotaConfigurationInput

Properties

Name Type Description Notes
name str The name of the configuration to quickly identify the resource.
description str An optional description of what the configuration is used for. [optional]
wallet_ari str The unique resource identifier of the Wallet used to sign the request token.
iota_response_webhook_url str The webhook URL is used for callback when the data is ready. [optional]
enable_verification bool Cryptographically verifies the data shared by the user when enabled.
enable_consent_audit_log bool Records the user's consent when they share their data, including the type of data shared when enabled.
token_max_age float This is the lifetime of the signed request token during the data-sharing flow. [optional]
client_metadata IotaConfigurationDtoClientMetadata
mode str 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

from affinidi_tdk_iota_client.models.create_iota_configuration_input import CreateIotaConfigurationInput

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

# convert the object into a dict
create_iota_configuration_input_dict = create_iota_configuration_input_instance.to_dict()
# create an instance of CreateIotaConfigurationInput from a dict
create_iota_configuration_input_from_dict = CreateIotaConfigurationInput.from_dict(create_iota_configuration_input_dict)

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