toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case LicenseDeletionStatus.pendingDelete:
      return 'PENDING_DELETE';
    case LicenseDeletionStatus.deleted:
      return 'DELETED';
  }
}