Name | Type | Description | Notes |
---|---|---|---|
detail | str |
from iblai.models.seed_mentors_view import SeedMentorsView
# TODO update the JSON string below
json = "{}"
# create an instance of SeedMentorsView from a JSON string
seed_mentors_view_instance = SeedMentorsView.from_json(json)
# print the JSON string representation of the object
print(SeedMentorsView.to_json())
# convert the object into a dict
seed_mentors_view_dict = seed_mentors_view_instance.to_dict()
# create an instance of SeedMentorsView from a dict
seed_mentors_view_from_dict = SeedMentorsView.from_dict(seed_mentors_view_dict)