Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 955 Bytes

MentorMetadata.md

File metadata and controls

31 lines (22 loc) · 955 Bytes

MentorMetadata

Properties

Name Type Description Notes
metadata object
mentor str [optional]
mentor_id int [optional]

Example

from iblai.models.mentor_metadata import MentorMetadata

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

# convert the object into a dict
mentor_metadata_dict = mentor_metadata_instance.to_dict()
# create an instance of MentorMetadata from a dict
mentor_metadata_from_dict = MentorMetadata.from_dict(mentor_metadata_dict)

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