Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.53 KB

NeurovaultCollectionReturn.md

File metadata and controls

35 lines (27 loc) · 1.53 KB

NeurovaultCollectionReturn

Properties

Name Type Description Notes
collection_id str [optional] [readonly]
files NeurovaultCollectionFiles [optional]
url str [optional]
id str the identifier for the resource. [optional]
updated_at datetime when the resource was last modified. [optional] [readonly]
created_at datetime When the resource was created. [optional] [readonly]
user str Who owns the resource. [optional]
username str [optional] [readonly]

Example

from neurosynth_compose_sdk.models.neurovault_collection_return import NeurovaultCollectionReturn

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

# convert the object into a dict
neurovault_collection_return_dict = neurovault_collection_return_instance.to_dict()
# create an instance of NeurovaultCollectionReturn from a dict
neurovault_collection_return_form_dict = neurovault_collection_return.from_dict(neurovault_collection_return_dict)

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