Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

EduResourceCreation.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

EduResourceCreation

Creation of an education resource

Properties

Name Type Description Notes
type EduResourceType
title str Title of the resource
parent str Identifier of the parent resource where the new one will created, e.g. a folder id or `root` [optional] [default to 'root']

Example

from flat_api.models.edu_resource_creation import EduResourceCreation

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

# convert the object into a dict
edu_resource_creation_dict = edu_resource_creation_instance.to_dict()
# create an instance of EduResourceCreation from a dict
edu_resource_creation_form_dict = edu_resource_creation.from_dict(edu_resource_creation_dict)

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