class FedexWebServices::Soap::Ship::CommercialInvoice

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

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

Attributes

comments[RW]
customerReferences[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, customerReferences = [], originatorName = nil, termsOfSale = nil) click to toggle source
# File lib/fedex_web_services/soap/ShipServiceDefinitions.rb, line 286
def initialize(comments = [], freightCharge = nil, taxesOrMiscellaneousCharge = nil, taxesOrMiscellaneousChargeType = nil, packingCosts = nil, handlingCosts = nil, specialInstructions = nil, declarationStatement = nil, paymentTerms = nil, purpose = nil, customerReferences = [], originatorName = nil, termsOfSale = nil)
  @comments = comments
  @freightCharge = freightCharge
  @taxesOrMiscellaneousCharge = taxesOrMiscellaneousCharge
  @taxesOrMiscellaneousChargeType = taxesOrMiscellaneousChargeType
  @packingCosts = packingCosts
  @handlingCosts = handlingCosts
  @specialInstructions = specialInstructions
  @declarationStatement = declarationStatement
  @paymentTerms = paymentTerms
  @purpose = purpose
  @customerReferences = customerReferences
  @originatorName = originatorName
  @termsOfSale = termsOfSale
end