common resource attributes not tied to a specific user
Name | Type | Description | Notes |
---|---|---|---|
created_at | datetime | time the resource was created on the database | [optional] [readonly] |
updated_at | str | when the resource was last modified/updated. | [optional] [readonly] |
id | str | short UUID specifying the location of this resource | [optional] |
public | bool | whether the resource is listed in public searches or not | [optional] [default to True] |
from neurostore_sdk.models.userless_resource_attributes import UserlessResourceAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of UserlessResourceAttributes from a JSON string
userless_resource_attributes_instance = UserlessResourceAttributes.from_json(json)
# print the JSON string representation of the object
print UserlessResourceAttributes.to_json()
# convert the object into a dict
userless_resource_attributes_dict = userless_resource_attributes_instance.to_dict()
# create an instance of UserlessResourceAttributes from a dict
userless_resource_attributes_form_dict = userless_resource_attributes.from_dict(userless_resource_attributes_dict)