1
0
mirror of synced 2025-01-19 17:31:45 +03:00
woocommerce-module/tests/datasets/data-inventories-retailcrm.php

25 lines
569 B
PHP
Raw Normal View History

2021-12-20 11:41:41 +03:00
<?php
namespace datasets;
class DataInventoriesRetailCrm {
public static function getResponseData()
{
return array(
'success' => true,
'pagination' => array(
'limit' => 250,
'totalCount' => 1,
'currentPage' => 1,
'totalPageCount' => 1
),
'offers' => array(
array(
'id' => 1,
'xmlId' => 'xmlId',
'quantity' => 10
)
)
);
}
}