public enum VisibilityOption| PRIVATE | 1 |
Only the owner of the data may see this value.
This is the least visible option. |
| PROTECTED | 2 |
Only the owner of the data and people in a sharing relationship with the owner (e.g. a Coach) may see this value.
This is the second least visible option. Only PRIVATE is less visible. |
| INTERNAL | 3 |
Only the owner of the data and people in a sharing relationship with the owner (e.g. a Coach) may see this value.
The value may also be used to calculate derived attribute values.
This is the second highest visible option. Only PUBLIC is more visible. |
| PUBLIC | 4 |
Globally readable, everyone may see this value.
This is the most visible option. |
| Description |
Returns the Description attribute of an enum. If Description is not an attribute
returns the .toString() value.
(Defined by EnumHelper) |
| GetAttributeOfTypeT |
Gets an attribute on an enum field value
(Defined by EnumHelper) |