Cloud visibility of a skill. (`Group` is managed by the cloud platform)
| 17 | |
| 18 | |
| 19 | class SkillVisibility(str, Enum): |
| 20 | """Cloud visibility of a skill. (`Group` is managed by the cloud platform)""" |
| 21 | |
| 22 | PRIVATE = "private" # Only visible to the creator |
| 23 | PUBLIC = "public" # Visible to all users on the cloud |
| 24 | |
| 25 | |
| 26 | class EvolutionType(str, Enum): |
no outgoing calls
no test coverage detected