class FedexWebServices::Soap::Rate::CurrencyExchangeRate

{fedex.com/ws/rate/v13}CurrencyExchangeRate

fromCurrency - SOAP::SOAPString
intoCurrency - SOAP::SOAPString
rate - SOAP::SOAPDecimal

Attributes

fromCurrency[RW]
intoCurrency[RW]
rate[RW]

Public Class Methods

new(fromCurrency = nil, intoCurrency = nil, rate = nil) click to toggle source
# File lib/fedex_web_services/soap/RateServiceDefinitions.rb, line 431
def initialize(fromCurrency = nil, intoCurrency = nil, rate = nil)
  @fromCurrency = fromCurrency
  @intoCurrency = intoCurrency
  @rate = rate
end