Skip to content

Latest commit

History

History
31 lines (22 loc) 路 1.22 KB

ClassDetailsGoogleClassroom.md

File metadata and controls

31 lines (22 loc) 路 1.22 KB

ClassDetailsGoogleClassroom

Google Classroom course-related information

Properties

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]

Example

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)

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