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
The name displayed on the consent page indicates who is requesting data from the user. It can be the application or website's name.
origin
str
The URL of the requester displayed on the consent page indicates the request's origin.
logo
str
The logo of the requester displayed on the consent page, allowing users to easily recognise who requests the data.
Example
fromaffinidi_tdk_iota_client.models.get_iota_configuration_meta_data_okimportGetIotaConfigurationMetaDataOK# TODO update the JSON string belowjson="{}"# create an instance of GetIotaConfigurationMetaDataOK from a JSON stringget_iota_configuration_meta_data_ok_instance=GetIotaConfigurationMetaDataOK.from_json(json)
# print the JSON string representation of the objectprintGetIotaConfigurationMetaDataOK.to_json()
# convert the object into a dictget_iota_configuration_meta_data_ok_dict=get_iota_configuration_meta_data_ok_instance.to_dict()
# create an instance of GetIotaConfigurationMetaDataOK from a dictget_iota_configuration_meta_data_ok_from_dict=GetIotaConfigurationMetaDataOK.from_dict(get_iota_configuration_meta_data_ok_dict)