toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OverallChangeStatus.pending:
      return 'PENDING';
    case OverallChangeStatus.processing:
      return 'PROCESSING';
    case OverallChangeStatus.completed:
      return 'COMPLETED';
    case OverallChangeStatus.failed:
      return 'FAILED';
  }
}