Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

ClassAssignmentMfc.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

ClassAssignmentMfc

A MusicFirst Classroom assignment

Properties

Name Type Description Notes
id str Unique identifier of the course on MusicFirst Task [optional]
alternate_link str Link to MusicFirst Classroom task [optional]

Example

from flat_api.models.class_assignment_mfc import ClassAssignmentMfc

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

# convert the object into a dict
class_assignment_mfc_dict = class_assignment_mfc_instance.to_dict()
# create an instance of ClassAssignmentMfc from a dict
class_assignment_mfc_form_dict = class_assignment_mfc.from_dict(class_assignment_mfc_dict)

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