toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConfigurationDeploymentStatus.deployed:
      return 'deployed';
    case ConfigurationDeploymentStatus.pending:
      return 'pending';
    case ConfigurationDeploymentStatus.failed:
      return 'failed';
  }
}