Creation of an education resource
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'] |
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)