toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case IngestionRequestSource.manual:
      return 'MANUAL';
    case IngestionRequestSource.scheduled:
      return 'SCHEDULED';
  }
}