toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AutoMLJobObjectiveType.maximize:
      return 'Maximize';
    case AutoMLJobObjectiveType.minimize:
      return 'Minimize';
  }
}