Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

ClassDetailsGoogleDrive.md

File metadata and controls

31 lines (22 loc) · 1.26 KB

ClassDetailsGoogleDrive

Google Drive course-related information provided by Google Classroom

Properties

Name Type Description Notes
teacher_folder_id str [Teachers only] The Drive directory identifier of the teachers' folder [optional]
teacher_folder_alternate_link str [Teachers only] The Drive URL of the teachers' folder [optional]

Example

from flat_api.models.class_details_google_drive import ClassDetailsGoogleDrive

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

# convert the object into a dict
class_details_google_drive_dict = class_details_google_drive_instance.to_dict()
# create an instance of ClassDetailsGoogleDrive from a dict
class_details_google_drive_form_dict = class_details_google_drive.from_dict(class_details_google_drive_dict)

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