Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.79 KB

GetIotaConfigurationMetaDataOK.md

File metadata and controls

29 lines (22 loc) · 1.79 KB

GetIotaConfigurationMetaDataOK

Properties

Name Type Description Notes
name str 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

from affinidi_tdk_iota_client.models.get_iota_configuration_meta_data_ok import GetIotaConfigurationMetaDataOK

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

# convert the object into a dict
get_iota_configuration_meta_data_ok_dict = get_iota_configuration_meta_data_ok_instance.to_dict()
# create an instance of GetIotaConfigurationMetaDataOK from a dict
get_iota_configuration_meta_data_ok_from_dict = GetIotaConfigurationMetaDataOK.from_dict(get_iota_configuration_meta_data_ok_dict)

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