Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

EduResourceUseInClass.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

EduResourceUseInClass

Use an education resource in class

Properties

Name Type Description Notes
classroom str The destination classroom where the resource will be copied.
assignment str An optional destination assignment where the original assignement will be copied. Must be a draft. [optional]

Example

from flat_api.models.edu_resource_use_in_class import EduResourceUseInClass

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

# convert the object into a dict
edu_resource_use_in_class_dict = edu_resource_use_in_class_instance.to_dict()
# create an instance of EduResourceUseInClass from a dict
edu_resource_use_in_class_form_dict = edu_resource_use_in_class.from_dict(edu_resource_use_in_class_dict)

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