Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1004 Bytes

RecommendCourseResponse.md

File metadata and controls

29 lines (20 loc) · 1004 Bytes

RecommendCourseResponse

Properties

Name Type Description Notes
courses List[object]

Example

from iblai.models.recommend_course_response import RecommendCourseResponse

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

# convert the object into a dict
recommend_course_response_dict = recommend_course_response_instance.to_dict()
# create an instance of RecommendCourseResponse from a dict
recommend_course_response_from_dict = RecommendCourseResponse.from_dict(recommend_course_response_dict)

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