class FedexWebServices::Soap::Ship::Money

{fedex.com/ws/ship/v12}Money

currency - SOAP::SOAPString
amount - SOAP::SOAPDecimal

Attributes

amount[RW]
currency[RW]

Public Class Methods

new(currency = nil, amount = nil) click to toggle source
# File lib/fedex_web_services/soap/ShipServiceDefinitions.rb, line 1955
def initialize(currency = nil, amount = nil)
  @currency = currency
  @amount = amount
end