Capabilities available for this resource
Name | Type | Description | Notes |
---|---|---|---|
can_edit | bool | Whether the current user can modify this resource | [optional] |
can_add_resources | bool | Whether the current user can add resources within this resource (e.g. `assignment` inside a `folder`) | [optional] |
can_add_folders | bool | Whether the current user can add folders within this resource (e.g. `folder` inside `root`) | [optional] |
from flat_api.models.edu_resource_capabilities import EduResourceCapabilities
# TODO update the JSON string below
json = "{}"
# create an instance of EduResourceCapabilities from a JSON string
edu_resource_capabilities_instance = EduResourceCapabilities.from_json(json)
# print the JSON string representation of the object
print EduResourceCapabilities.to_json()
# convert the object into a dict
edu_resource_capabilities_dict = edu_resource_capabilities_instance.to_dict()
# create an instance of EduResourceCapabilities from a dict
edu_resource_capabilities_form_dict = edu_resource_capabilities.from_dict(edu_resource_capabilities_dict)