toValue method
Implementation
String toValue() {
switch (this) {
case AggregatedSourceStatusType.failed:
return 'FAILED';
case AggregatedSourceStatusType.succeeded:
return 'SUCCEEDED';
case AggregatedSourceStatusType.outdated:
return 'OUTDATED';
}
}