Skip to content

Commit

Permalink
TE-4264 Fix transfer definitions to include missing uses.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 14, 2019
1 parent 5269cc5 commit 280283d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Spryker/Shared/ProductList/Transfer/product_list.transfer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,27 @@
<property name="quote" type="Quote"/>
</transfer>

<transfer name="CartPreCheckResponse">
<property name="isSuccess" type="bool"/>
<property name="messages" type="Message[]" singular="message"/>
</transfer>

<transfer name="Quote">
<property name="customer" type="Customer"/>
<property name="items" type="Item[]" singular="item"/>
</transfer>

<transfer name="Item">
<property name="sku" type="string"/>
</transfer>

<transfer name="Customer">
<property name="customerProductListCollection" type="CustomerProductListCollection"/>
</transfer>

<transfer name="CustomerProductListCollection">
<property name="blacklistIds" type="int[]" singular="blacklistId"/>
<property name="whitelistIds" type="int[]" singular="whitelistId"/>
</transfer>

</transfers>

0 comments on commit 280283d

Please sign in to comment.