Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

EduResourceMove.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

EduResourceMove

Move an education resource

Properties

Name Type Description Notes
destination str Unique identifier of the destination of the folder where to move this resource. This can also be `root` to move the resource at the root of the user resource library.

Example

from flat_api.models.edu_resource_move import EduResourceMove

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

# convert the object into a dict
edu_resource_move_dict = edu_resource_move_instance.to_dict()
# create an instance of EduResourceMove from a dict
edu_resource_move_form_dict = edu_resource_move.from_dict(edu_resource_move_dict)

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