class FedexWebServices::Soap::Ship::CurrencyExchangeRate

{fedex.com/ws/ship/v12}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/ShipServiceDefinitions.rb, line 744
def initialize(fromCurrency = nil, intoCurrency = nil, rate = nil)
  @fromCurrency = fromCurrency
  @intoCurrency = intoCurrency
  @rate = rate
end