Class: ChannelAdvisor::OrderServiceSOAP::OrderRefundHistoryResponse

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

Overview

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

orderID - SOAP::SOAPInt
clientOrderIdentifier - SOAP::SOAPString
refundStatus - ChannelAdvisor::OrderServiceSOAP::OrderRefundStatusCode
lineItemRefunds - ChannelAdvisor::OrderServiceSOAP::ArrayOfOrderLineItemRefundHistoryResponse

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(orderID = nil, clientOrderIdentifier = nil, refundStatus = nil, lineItemRefunds = nil) ⇒ OrderRefundHistoryResponse

Returns a new instance of OrderRefundHistoryResponse.



1528
1529
1530
1531
1532
1533
# File 'lib/channel_advisor/order_service/types.rb', line 1528

def initialize(orderID = nil, clientOrderIdentifier = nil, refundStatus = nil, lineItemRefunds = nil)
  @orderID = orderID
  @clientOrderIdentifier = clientOrderIdentifier
  @refundStatus = refundStatus
  @lineItemRefunds = lineItemRefunds
end

Instance Attribute Details

#clientOrderIdentifierObject

Returns the value of attribute clientOrderIdentifier.



1524
1525
1526
# File 'lib/channel_advisor/order_service/types.rb', line 1524

def clientOrderIdentifier
  @clientOrderIdentifier
end

#lineItemRefundsObject

Returns the value of attribute lineItemRefunds.



1526
1527
1528
# File 'lib/channel_advisor/order_service/types.rb', line 1526

def lineItemRefunds
  @lineItemRefunds
end

#orderIDObject

Returns the value of attribute orderID.



1523
1524
1525
# File 'lib/channel_advisor/order_service/types.rb', line 1523

def orderID
  @orderID
end

#refundStatusObject

Returns the value of attribute refundStatus.



1525
1526
1527
# File 'lib/channel_advisor/order_service/types.rb', line 1525

def refundStatus
  @refundStatus
end