Interface TuaAppliedCustomerBillingRateService
- All Known Implementing Classes:
DefaultTuaAppliedCustomerBillingRateService
public interface TuaAppliedCustomerBillingRateService
Service responsible for handling
TuaAppliedCustomerBillingRateModel related operations.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionReturns aTuaAppliedCustomerBillingRateModelfor the given id.getAppliedCustomerBillingRates(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext, Integer offset, Integer limit) Returns a list ofTuaAppliedCustomerBillingRateModels for the given context.getNumberOfAppliedCustomerBillingRatesFor(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext) Retrieves the total number of applied customer billing rates found for a given tuaAppliedCustomerBillingRateContext.
-
Method Details
-
getAppliedCustomerBillingRate
Returns aTuaAppliedCustomerBillingRateModelfor the given id.- Parameters:
id- appliedCustomerBillingRate id ofTuaAppliedCustomerBillingRateModel- Returns:
- the
TuaAppliedCustomerBillingRateModelfound.
-
getAppliedCustomerBillingRates
List<TuaAppliedCustomerBillingRateModel> getAppliedCustomerBillingRates(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext, Integer offset, Integer limit) Returns a list ofTuaAppliedCustomerBillingRateModels for the given context.- Parameters:
tuaAppliedCustomerBillingRateContext- the applied customer billing rate context, used for filtering the applied customer billing rates.offset- the offset.limit- the maximum number of returned applied customer billing rates.- Returns:
- the List of
TuaAppliedCustomerBillingRateModels found for the given context.
-
getNumberOfAppliedCustomerBillingRatesFor
Integer getNumberOfAppliedCustomerBillingRatesFor(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext) Retrieves the total number of applied customer billing rates found for a given tuaAppliedCustomerBillingRateContext.- Parameters:
tuaAppliedCustomerBillingRateContext- the applied customer billing rate context.- Returns:
- the number of applied customer billing rates found.
-