Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

WriteableResourceAttributes

common resource attributes

Properties

Name Type Description Notes
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.writeable_resource_attributes import WriteableResourceAttributes

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

# convert the object into a dict
writeable_resource_attributes_dict = writeable_resource_attributes_instance.to_dict()
# create an instance of WriteableResourceAttributes from a dict
writeable_resource_attributes_from_dict = WriteableResourceAttributes.from_dict(writeable_resource_attributes_dict)

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