Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

UserResourceAttributes.md

File metadata and controls

30 lines (22 loc) · 1.09 KB

UserResourceAttributes

common resource attributes

Properties

Name Type Description Notes
user str who owns the resource [optional] [readonly]
username str human readable username [optional]

Example

from neurostore_sdk.models.user_resource_attributes import UserResourceAttributes

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

# convert the object into a dict
user_resource_attributes_dict = user_resource_attributes_instance.to_dict()
# create an instance of UserResourceAttributes from a dict
user_resource_attributes_form_dict = user_resource_attributes.from_dict(user_resource_attributes_dict)

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