Package org.killbill.billing.catalog.api
Interface PlanPhasePriceOverride
-
public interface PlanPhasePriceOverride
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CurrencygetCurrency()BigDecimalgetFixedPrice()StringgetPhaseName()PlanPhaseSpecifiergetPlanPhaseSpecifier()BigDecimalgetRecurringPrice()List<UsagePriceOverride>getUsagePriceOverrides()
-
-
-
Method Detail
-
getPhaseName
String getPhaseName()
- Returns:
- the name of the phase
-
getPlanPhaseSpecifier
PlanPhaseSpecifier getPlanPhaseSpecifier()
- Returns:
- the planPhase specifier
-
getCurrency
Currency getCurrency()
- Returns:
- the currency
-
getFixedPrice
BigDecimal getFixedPrice()
- Returns:
- the fixed price for that currency
-
getRecurringPrice
BigDecimal getRecurringPrice()
- Returns:
- the recurring price for that currency
-
getUsagePriceOverrides
List<UsagePriceOverride> getUsagePriceOverrides()
- Returns:
- the usage overrides for the phase
-
-