Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

ClassDetailsCanvas.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

ClassDetailsCanvas

Meta information provided by Canvs LMS

Properties

Name Type Description Notes
id str Unique identifier of the course on Canvas [optional]
domain str Canvas instance domain (e.g. "canvas.instructure.com") [optional]

Example

from flat_api.models.class_details_canvas import ClassDetailsCanvas

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

# convert the object into a dict
class_details_canvas_dict = class_details_canvas_instance.to_dict()
# create an instance of ClassDetailsCanvas from a dict
class_details_canvas_form_dict = class_details_canvas.from_dict(class_details_canvas_dict)

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