Skip to content

Latest commit

History

History
32 lines (23 loc) 路 1.08 KB

ClassDetailsLti.md

File metadata and controls

32 lines (23 loc) 路 1.08 KB

ClassDetailsLti

Meta information provided by the LTI consumer

Properties

Name Type Description Notes
context_id str Unique context identifier provided [optional]
context_title str Context title [optional]
context_label str Context label [optional]

Example

from flat_api.models.class_details_lti import ClassDetailsLti

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

# convert the object into a dict
class_details_lti_dict = class_details_lti_instance.to_dict()
# create an instance of ClassDetailsLti from a dict
class_details_lti_form_dict = class_details_lti.from_dict(class_details_lti_dict)

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