Source code for degreedClient.models.skill_plan

import arrow
import attr

from attr import attrs, attrib



[docs]@attrs class SkillPlan(object): id = attrib() attributes = attrib() links = attrib()
[docs]@attrs class SkillPlanAttribute(object): name = attrib() description = attrib() visibility = attrib() sections = attrib(default=None) created_at = attr.ib(converter=attr.converters.optional(arrow.get), default=None)
[docs]@attrs class SkillFollower(object): id = attrib() attributes = attrib() links = attrib() relationships = attrib()
[docs]@attrs class SkillFollowerAttribute(object): employee_id = attrib() enrolled_at = attrib() is_primary_plan = attrib()