Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1011 Bytes

SkillThreshold.md

File metadata and controls

31 lines (22 loc) · 1011 Bytes

SkillThreshold

Properties

Name Type Description Notes
name str The name of the threshold e.g Beginner.
threshold int The threshold for the skill.
platform str The platform key

Example

from iblai.models.skill_threshold import SkillThreshold

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

# convert the object into a dict
skill_threshold_dict = skill_threshold_instance.to_dict()
# create an instance of SkillThreshold from a dict
skill_threshold_from_dict = SkillThreshold.from_dict(skill_threshold_dict)

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