Skip to content

Latest commit

History

History
33 lines (24 loc) 路 1.16 KB

EduLibrary.md

File metadata and controls

33 lines (24 loc) 路 1.16 KB

EduLibrary

A Flat for Education Library

Properties

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]

Example

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)

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