Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.43 KB

UserlessResourceAttributes.md

File metadata and controls

32 lines (24 loc) · 1.43 KB

UserlessResourceAttributes

common resource attributes not tied to a specific user

Properties

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]

Example

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)

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