PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / interfaces / api / FulfillmentClientInterface.php

FulfillmentClientInterface.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/interfaces/api/FulfillmentClientInterface.php

19 lines 327 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Description of FulfillmentClientInterface
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 interface FulfillmentClientInterface
12 {
13 /**
14 * @param OrderPreviewDataDto $OrderPreviewData
15 * @return array
16 */
17 public function getOrderPreview(OrderPreviewDataDto $OrderPreviewData): array;
18 }
19