toValue method
Implementation
String toValue() {
switch (this) {
case ActionOwner.aws:
return 'AWS';
case ActionOwner.thirdParty:
return 'ThirdParty';
case ActionOwner.custom:
return 'Custom';
}
}
String toValue() {
switch (this) {
case ActionOwner.aws:
return 'AWS';
case ActionOwner.thirdParty:
return 'ThirdParty';
case ActionOwner.custom:
return 'Custom';
}
}