Meta information provided by Canvs LMS
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] |
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)