Google Classroom course-related information
Name | Type | Description | Notes |
---|---|---|---|
id | str | The course identifier on Google Classroom | [optional] |
alternate_link | str | Absolute link to this course in the Classroom web UI | [optional] |
from flat_api.models.class_details_google_classroom import ClassDetailsGoogleClassroom
# TODO update the JSON string below
json = "{}"
# create an instance of ClassDetailsGoogleClassroom from a JSON string
class_details_google_classroom_instance = ClassDetailsGoogleClassroom.from_json(json)
# print the JSON string representation of the object
print ClassDetailsGoogleClassroom.to_json()
# convert the object into a dict
class_details_google_classroom_dict = class_details_google_classroom_instance.to_dict()
# create an instance of ClassDetailsGoogleClassroom from a dict
class_details_google_classroom_form_dict = class_details_google_classroom.from_dict(class_details_google_classroom_dict)