Class: ChannelAdvisor::ShippingServiceSOAP::OrderShipped

Inherits:
Object
  • Object
show all
Defined in:
lib/channel_advisor/shipping_service/types.rb

Overview

/OrderShipped

accountID - SOAP::SOAPString
orderID - SOAP::SOAPInt
dateShippedGMT - SOAP::SOAPDateTime
carrierCode - SOAP::SOAPString
classCode - SOAP::SOAPString
trackingNumber - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accountID = nil, orderID = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil) ⇒ OrderShipped

Returns a new instance of OrderShipped.



243
244
245
246
247
248
249
250
# File 'lib/channel_advisor/shipping_service/types.rb', line 243

def initialize(accountID = nil, orderID = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil)
  @accountID = accountID
  @orderID = orderID
  @dateShippedGMT = dateShippedGMT
  @carrierCode = carrierCode
  @classCode = classCode
  @trackingNumber = trackingNumber
end

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



236
237
238
# File 'lib/channel_advisor/shipping_service/types.rb', line 236

def accountID
  @accountID
end

#carrierCodeObject

Returns the value of attribute carrierCode.



239
240
241
# File 'lib/channel_advisor/shipping_service/types.rb', line 239

def carrierCode
  @carrierCode
end

#classCodeObject

Returns the value of attribute classCode.



240
241
242
# File 'lib/channel_advisor/shipping_service/types.rb', line 240

def classCode
  @classCode
end

#dateShippedGMTObject

Returns the value of attribute dateShippedGMT.



238
239
240
# File 'lib/channel_advisor/shipping_service/types.rb', line 238

def dateShippedGMT
  @dateShippedGMT
end

#orderIDObject

Returns the value of attribute orderID.



237
238
239
# File 'lib/channel_advisor/shipping_service/types.rb', line 237

def orderID
  @orderID
end

#trackingNumberObject

Returns the value of attribute trackingNumber.



241
242
243
# File 'lib/channel_advisor/shipping_service/types.rb', line 241

def trackingNumber
  @trackingNumber
end