Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 890 Bytes

SeedMentorsView.md

File metadata and controls

29 lines (20 loc) · 890 Bytes

SeedMentorsView

Properties

Name Type Description Notes
detail str

Example

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)

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