class FedexWebServices::Soap::Ship::CompletedTagDetail

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

confirmationNumber - SOAP::SOAPString
accessTime - SOAP::SOAPDuration
cutoffTime - SOAP::SOAPTime
location - SOAP::SOAPString
deliveryCommitment - SOAP::SOAPDateTime
dispatchDate - SOAP::SOAPDate

Attributes

accessTime[RW]
confirmationNumber[RW]
cutoffTime[RW]
deliveryCommitment[RW]
dispatchDate[RW]
location[RW]

Public Class Methods

new(confirmationNumber = nil, accessTime = nil, cutoffTime = nil, location = nil, deliveryCommitment = nil, dispatchDate = nil) click to toggle source
# File lib/fedex_web_services/soap/ShipServiceDefinitions.rb, line 593
def initialize(confirmationNumber = nil, accessTime = nil, cutoffTime = nil, location = nil, deliveryCommitment = nil, dispatchDate = nil)
  @confirmationNumber = confirmationNumber
  @accessTime = accessTime
  @cutoffTime = cutoffTime
  @location = location
  @deliveryCommitment = deliveryCommitment
  @dispatchDate = dispatchDate
end