class FedexWebServices::Soap::Ship::Tax

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

taxType - FedexWebServices::Soap::Ship::TaxType
description - SOAP::SOAPString
amount - FedexWebServices::Soap::Ship::Money

Attributes

amount[RW]
description[RW]
taxType[RW]

Public Class Methods

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