Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

ClassDetailsMicrosoftGraph

Properties

Name Type Description Notes
id str The course identifier on Microsoft Graph [optional]

Example

from flat_api.models.class_details_microsoft_graph import ClassDetailsMicrosoftGraph

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

# convert the object into a dict
class_details_microsoft_graph_dict = class_details_microsoft_graph_instance.to_dict()
# create an instance of ClassDetailsMicrosoftGraph from a dict
class_details_microsoft_graph_form_dict = class_details_microsoft_graph.from_dict(class_details_microsoft_graph_dict)

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