toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Tier.standard:
      return 'Standard';
    case Tier.bulk:
      return 'Bulk';
    case Tier.expedited:
      return 'Expedited';
  }
}