class FedexWebServices::Soap::Rate::CommercialInvoice

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

comments - SOAP::SOAPString
freightCharge - FedexWebServices::Soap::Rate::Money
taxesOrMiscellaneousCharge - FedexWebServices::Soap::Rate::Money
taxesOrMiscellaneousChargeType - FedexWebServices::Soap::Rate::TaxesOrMiscellaneousChargeType
packingCosts - FedexWebServices::Soap::Rate::Money
handlingCosts - FedexWebServices::Soap::Rate::Money
specialInstructions - SOAP::SOAPString
declarationStatement - SOAP::SOAPString
paymentTerms - SOAP::SOAPString
purpose - FedexWebServices::Soap::Rate::PurposeOfShipmentType
originatorName - SOAP::SOAPString
termsOfSale - FedexWebServices::Soap::Rate::TermsOfSaleType

Attributes

comments[RW]
declarationStatement[RW]
freightCharge[RW]
handlingCosts[RW]
originatorName[RW]
packingCosts[RW]
paymentTerms[RW]
purpose[RW]
specialInstructions[RW]
taxesOrMiscellaneousCharge[RW]
taxesOrMiscellaneousChargeType[RW]
termsOfSale[RW]

Public Class Methods

new(comments = [], freightCharge = nil, taxesOrMiscellaneousCharge = nil, taxesOrMiscellaneousChargeType = nil, packingCosts = nil, handlingCosts = nil, specialInstructions = nil, declarationStatement = nil, paymentTerms = nil, purpose = nil, originatorName = nil, termsOfSale = nil) click to toggle source
# File lib/fedex_web_services/soap/RateServiceDefinitions.rb, line 174
def initialize(comments = [], freightCharge = nil, taxesOrMiscellaneousCharge = nil, taxesOrMiscellaneousChargeType = nil, packingCosts = nil, handlingCosts = nil, specialInstructions = nil, declarationStatement = nil, paymentTerms = nil, purpose = nil, originatorName = nil, termsOfSale = nil)
  @comments = comments
  @freightCharge = freightCharge
  @taxesOrMiscellaneousCharge = taxesOrMiscellaneousCharge
  @taxesOrMiscellaneousChargeType = taxesOrMiscellaneousChargeType
  @packingCosts = packingCosts
  @handlingCosts = handlingCosts
  @specialInstructions = specialInstructions
  @declarationStatement = declarationStatement
  @paymentTerms = paymentTerms
  @purpose = purpose
  @originatorName = originatorName
  @termsOfSale = termsOfSale
end