We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b223d51 + d3dcf64 commit 9fd9cd3Copy full SHA for 9fd9cd3
src/Structures/Order/OrderItemCreationParameters.php
@@ -16,6 +16,11 @@ class OrderItemCreationParameters
16
*/
17
public $variantId;
18
19
+ /**
20
+ * @var int - Sync Variant ID of the item ordered
21
+ */
22
+ public $syncVariantId;
23
+
24
/**
25
* @var int
26
@@ -105,6 +110,7 @@ public function toArray()
105
110
return [
106
111
'external_id' => $this->externalId,
107
112
'variant_id' => $this->variantId,
113
+ 'sync_variant_id' => $this->syncVariantId,
108
114
'quantity' => $this->quantity,
109
115
'retail_price' => $this->retailPrice,
116
'name' => $this->name,
0 commit comments