toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case NodeUpdateInitiatedBy.system:
      return 'system';
    case NodeUpdateInitiatedBy.customer:
      return 'customer';
  }
}