def toString()

in lambda/src/main/scala/pricemigrationengine/model/BillingPeriod.scala [23:34]


  def toString(period: BillingPeriod): String = {
    // For Zuora, the billingPeriod should be one of: Month, Quarter, Semi_Annual, Annual, Eighteen_Months,
    // Two_Years, Three_Years, Five_Years, Specific_Months, Subscription_Term, Week, Specific_Weeks, Specific_Days

    // We are only using Month, Quarter and Annual
    period match {
      case Monthly    => "Month"
      case Quarterly  => "Quarter"
      case Annual     => "Annual"
      case SemiAnnual => "Semi_Annual"
    }
  }