A Flat for Education Library
Name | Type | Description | Notes |
---|---|---|---|
id | str | Unique identifier of the library. This one can be used to list the underlying resources using `GET /v2/eduResources?parent={library-id}` | [optional] |
name | str | Name of the lirbary | [optional] |
type | str | Type of the library | [optional] |
visibility | str | Visibility of the library | [optional] |
from flat_api.models.edu_library import EduLibrary
# TODO update the JSON string below
json = "{}"
# create an instance of EduLibrary from a JSON string
edu_library_instance = EduLibrary.from_json(json)
# print the JSON string representation of the object
print EduLibrary.to_json()
# convert the object into a dict
edu_library_dict = edu_library_instance.to_dict()
# create an instance of EduLibrary from a dict
edu_library_form_dict = edu_library.from_dict(edu_library_dict)