toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ActionType.instanceRefresh:
      return 'InstanceRefresh';
    case ActionType.platformUpdate:
      return 'PlatformUpdate';
    case ActionType.unknown:
      return 'Unknown';
  }
}