Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 996 Bytes

File metadata and controls

32 lines (23 loc) · 996 Bytes

ReportedSkill

Properties

Name Type Description Notes
user_id int [optional]
username str [optional]
skills List[Skill]
data object [readonly]

Example

from iblai.models.reported_skill import ReportedSkill

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

# convert the object into a dict
reported_skill_dict = reported_skill_instance.to_dict()
# create an instance of ReportedSkill from a dict
reported_skill_from_dict = ReportedSkill.from_dict(reported_skill_dict)

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