toValue method
Implementation
String toValue() {
switch (this) {
case NamespaceDeletionStatus.inProgress:
return 'IN_PROGRESS';
case NamespaceDeletionStatus.succeeded:
return 'SUCCEEDED';
case NamespaceDeletionStatus.failed:
return 'FAILED';
}
}