getValue method
Converts this enum's values to String.
Implementation
String getValue() {
switch (this) {
case ParticipantAccess.read:
return 'Read';
case ParticipantAccess.readWrite:
return 'ReadWrite';
}
}
Converts this enum's values to String.
String getValue() {
switch (this) {
case ParticipantAccess.read:
return 'Read';
case ParticipantAccess.readWrite:
return 'ReadWrite';
}
}