Interface ExchangeRate.Service
-
- All Superinterfaces:
Maskable
,ResultLimitable
,Service
- Enclosing class:
- ExchangeRate
@ApiService("SoftLayer_Billing_Currency_ExchangeRate") public static interface ExchangeRate.Service extends Service
- See Also:
- SoftLayer_Billing_Currency_ExchangeRate
-
-
Method Summary
Modifier and Type Method Description ExchangeRate.ServiceAsync
asAsync()
Get an async version of this serviceList<ExchangeRate>
getAllCurrencyExchangeRates(String stringDate)
List<Currency>
getCurrencies()
ExchangeRate
getExchangeRate(String to, String from, GregorianCalendar effectiveDate)
Currency
getFundingCurrency()
Currency
getLocalCurrency()
ExchangeRate
getObject()
String
getPrice(BigDecimal price, Format formatOptions)
void
setMask(ExchangeRate.Mask mask)
ExchangeRate.Mask
withMask()
Use the existing mask on this service or create it if not presentExchangeRate.Mask
withNewMask()
Overwrite the existing mask on this service with a new one and return it-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
asAsync
ExchangeRate.ServiceAsync asAsync()
Description copied from interface:Service
Get an async version of this service
-
withNewMask
ExchangeRate.Mask withNewMask()
Description copied from interface:Maskable
Overwrite the existing mask on this service with a new one and return it- Specified by:
withNewMask
in interfaceMaskable
-
withMask
ExchangeRate.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(ExchangeRate.Mask mask)
-
getAllCurrencyExchangeRates
@ApiMethod(instanceRequired=true) List<ExchangeRate> getAllCurrencyExchangeRates(String stringDate)
-
getCurrencies
@ApiMethod List<Currency> getCurrencies()
-
getExchangeRate
@ApiMethod ExchangeRate getExchangeRate(String to, String from, GregorianCalendar effectiveDate)
-
getObject
@ApiMethod(instanceRequired=true) ExchangeRate getObject()
-
getPrice
@ApiMethod(instanceRequired=true) String getPrice(BigDecimal price, Format formatOptions)
-
getFundingCurrency
@ApiMethod(instanceRequired=true) Currency getFundingCurrency()
-
getLocalCurrency
@ApiMethod(instanceRequired=true) Currency getLocalCurrency()
-
-