UserSkill
toloka.client.user_skill.UserSkill
| Source code
UserSkill(
self,
*,
id: Optional[str] = None,
skill_id: Optional[str] = None,
user_id: Optional[str] = None,
value: Optional[int] = None,
exact_value: Optional[Decimal] = None,
created: Optional[datetime] = None,
modified: Optional[datetime] = None
)
Describes the value of a specific skill for a specific performer
Parameters Description
Parameters | Type | Description |
---|---|---|
id |
Optional[str] | Internal identifier of the user's skill value. |
skill_id |
Optional[str] | Skill identifier, which skill is installed. |
user_id |
Optional[str] | User identifier, to which performer the skill is installed. |
value |
Optional[int] | Skill value (from 0 to 100). Rough presentation. |
exact_value |
Optional[Decimal] | Skill value (from 0 to 100). Exact representation. |
created |
Optional[datetime] | Date and time when this skill was created for the performer. |
modified |
Optional[datetime] | Date and time of the last skill change for the performer. |