Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.12 KB

ListConfigurationOK.md

File metadata and controls

27 lines (20 loc) · 1.12 KB

ListConfigurationOK

Properties

Name Type Description Notes
configurations List[IotaConfigurationDto]

Example

from affinidi_tdk_iota_client.models.list_configuration_ok import ListConfigurationOK

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

# convert the object into a dict
list_configuration_ok_dict = list_configuration_ok_instance.to_dict()
# create an instance of ListConfigurationOK from a dict
list_configuration_ok_from_dict = ListConfigurationOK.from_dict(list_configuration_ok_dict)

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