Name |
Type |
Description |
Notes |
id |
str |
|
[optional] |
from neurostore_sdk.models.nested_put_attributes import NestedPutAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of NestedPutAttributes from a JSON string
nested_put_attributes_instance = NestedPutAttributes.from_json(json)
# print the JSON string representation of the object
print NestedPutAttributes.to_json()
# convert the object into a dict
nested_put_attributes_dict = nested_put_attributes_instance.to_dict()
# create an instance of NestedPutAttributes from a dict
nested_put_attributes_form_dict = nested_put_attributes.from_dict(nested_put_attributes_dict)
[Back to Model list] [Back to API list] [Back to README]