Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] getOrderResponse convert type error: orderLines #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Models/MP/US/Orders/GetOrderResponseRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class GetOrderResponseRecord extends BaseModel
'mart' => 'string',
'isGuest' => 'bool',
'shippingInfo' => '\Walmart\Models\MP\US\Orders\ShippingInfoType',
'orderLines' => '\Walmart\Models\MP\US\Orders\RefundLinesType',
'orderLines' => '\Walmart\Models\MP\US\Orders\OrderLinesType',
'paymentTypes' => 'string[]',
'orderSummary' => '\Walmart\Models\MP\US\Orders\OrderSummary',
'pickupPersons' => '\Walmart\Models\MP\US\Orders\PickupPerson[]',
Expand Down Expand Up @@ -536,7 +536,7 @@ public function setShippingInfo($shippingInfo)
/**
* Gets orderLines
*
* @return \Walmart\Models\MP\US\Orders\RefundLinesType
* @return \Walmart\Models\MP\US\Orders\OrderLinesType

*/
public function getOrderLines()
Expand All @@ -547,7 +547,7 @@ public function getOrderLines()
/**
* Sets orderLines
*
* @param \Walmart\Models\MP\US\Orders\RefundLinesType $orderLines orderLines
* @param \Walmart\Models\MP\US\Orders\OrderLinesType $orderLines orderLines
*
* @return self

Expand Down