Class: ChannelAdvisor::OrderServiceSOAP::OrderResponseItem

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

Overview

http://api.channeladvisor.com/datacontracts/ordersOrderResponseItem abstract

numberOfMatches - SOAP::SOAPInt
orderTimeGMT - SOAP::SOAPDateTime
lastUpdateDate - SOAP::SOAPDateTime
totalOrderAmount - SOAP::SOAPDecimal
orderState - ChannelAdvisor::OrderServiceSOAP::OrderStateCode
dateCancelledGMT - SOAP::SOAPDateTime
orderID - SOAP::SOAPInt
clientOrderIdentifier - SOAP::SOAPString

Direct Known Subclasses

OrderResponseDetailLow

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(numberOfMatches = nil, orderTimeGMT = nil, lastUpdateDate = nil, totalOrderAmount = nil, orderState = nil, dateCancelledGMT = nil, orderID = nil, clientOrderIdentifier = nil) ⇒ OrderResponseItem

Returns a new instance of OrderResponseItem.



339
340
341
342
343
344
345
346
347
348
# File 'lib/channel_advisor/order_service/types.rb', line 339

def initialize(numberOfMatches = nil, orderTimeGMT = nil, lastUpdateDate = nil, totalOrderAmount = nil, orderState = nil, dateCancelledGMT = nil, orderID = nil, clientOrderIdentifier = nil)
  @numberOfMatches = numberOfMatches
  @orderTimeGMT = orderTimeGMT
  @lastUpdateDate = lastUpdateDate
  @totalOrderAmount = totalOrderAmount
  @orderState = orderState
  @dateCancelledGMT = dateCancelledGMT
  @orderID = orderID
  @clientOrderIdentifier = clientOrderIdentifier
end

Instance Attribute Details

#clientOrderIdentifierObject

Returns the value of attribute clientOrderIdentifier.



337
338
339
# File 'lib/channel_advisor/order_service/types.rb', line 337

def clientOrderIdentifier
  @clientOrderIdentifier
end

#dateCancelledGMTObject

Returns the value of attribute dateCancelledGMT.



335
336
337
# File 'lib/channel_advisor/order_service/types.rb', line 335

def dateCancelledGMT
  @dateCancelledGMT
end

#lastUpdateDateObject

Returns the value of attribute lastUpdateDate.



332
333
334
# File 'lib/channel_advisor/order_service/types.rb', line 332

def lastUpdateDate
  @lastUpdateDate
end

#numberOfMatchesObject

Returns the value of attribute numberOfMatches.



330
331
332
# File 'lib/channel_advisor/order_service/types.rb', line 330

def numberOfMatches
  @numberOfMatches
end

#orderIDObject

Returns the value of attribute orderID.



336
337
338
# File 'lib/channel_advisor/order_service/types.rb', line 336

def orderID
  @orderID
end

#orderStateObject

Returns the value of attribute orderState.



334
335
336
# File 'lib/channel_advisor/order_service/types.rb', line 334

def orderState
  @orderState
end

#orderTimeGMTObject

Returns the value of attribute orderTimeGMT.



331
332
333
# File 'lib/channel_advisor/order_service/types.rb', line 331

def orderTimeGMT
  @orderTimeGMT
end

#totalOrderAmountObject

Returns the value of attribute totalOrderAmount.



333
334
335
# File 'lib/channel_advisor/order_service/types.rb', line 333

def totalOrderAmount
  @totalOrderAmount
end