Class: ChannelAdvisor::OrderServiceSOAP::OrderStatus

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

Overview

http://api.channeladvisor.com/datacontracts/ordersOrderStatus

checkoutStatus - ChannelAdvisor::OrderServiceSOAP::CheckoutStatusCode
checkoutDateGMT - SOAP::SOAPDateTime
paymentStatus - ChannelAdvisor::OrderServiceSOAP::PaymentStatusCode
paymentDateGMT - SOAP::SOAPDateTime
shippingStatus - ChannelAdvisor::OrderServiceSOAP::ShippingStatusCode
shippingDateGMT - SOAP::SOAPDateTime

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(checkoutStatus = nil, checkoutDateGMT = nil, paymentStatus = nil, paymentDateGMT = nil, shippingStatus = nil, shippingDateGMT = nil) ⇒ OrderStatus

Returns a new instance of OrderStatus.



565
566
567
568
569
570
571
572
# File 'lib/channel_advisor/order_service/types.rb', line 565

def initialize(checkoutStatus = nil, checkoutDateGMT = nil, paymentStatus = nil, paymentDateGMT = nil, shippingStatus = nil, shippingDateGMT = nil)
  @checkoutStatus = checkoutStatus
  @checkoutDateGMT = checkoutDateGMT
  @paymentStatus = paymentStatus
  @paymentDateGMT = paymentDateGMT
  @shippingStatus = shippingStatus
  @shippingDateGMT = shippingDateGMT
end

Instance Attribute Details

#checkoutDateGMTObject

Returns the value of attribute checkoutDateGMT.



559
560
561
# File 'lib/channel_advisor/order_service/types.rb', line 559

def checkoutDateGMT
  @checkoutDateGMT
end

#checkoutStatusObject

Returns the value of attribute checkoutStatus.



558
559
560
# File 'lib/channel_advisor/order_service/types.rb', line 558

def checkoutStatus
  @checkoutStatus
end

#paymentDateGMTObject

Returns the value of attribute paymentDateGMT.



561
562
563
# File 'lib/channel_advisor/order_service/types.rb', line 561

def paymentDateGMT
  @paymentDateGMT
end

#paymentStatusObject

Returns the value of attribute paymentStatus.



560
561
562
# File 'lib/channel_advisor/order_service/types.rb', line 560

def paymentStatus
  @paymentStatus
end

#shippingDateGMTObject

Returns the value of attribute shippingDateGMT.



563
564
565
# File 'lib/channel_advisor/order_service/types.rb', line 563

def shippingDateGMT
  @shippingDateGMT
end

#shippingStatusObject

Returns the value of attribute shippingStatus.



562
563
564
# File 'lib/channel_advisor/order_service/types.rb', line 562

def shippingStatus
  @shippingStatus
end