for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Request Provider Class
* @category Ticaje
* @author Max Demian <[email protected]>
*/
namespace Ticaje\AeSdk\Domain\Endpoint\Solution\Product\Get;
use Ticaje\Contract\Patterns\Interfaces\Pool\WorkerInterface;
use Ticaje\Contract\Traits\BaseDto;
use Ticaje\AeSdk\Infrastructure\Builder\ServiceRequestBuilder;
use Ticaje\AeSdk\Domain\Interfaces\Request\ServiceRequestInterface;
* Class Groups
* @package Ticaje\AeSdk\Domain\Endpoint\Solution\Product\Get
class Groups implements ServiceRequestInterface, WorkerInterface
{
use BaseDto, ServiceRequestBuilder;
private $apiMethodName = 'aliexpress.postproduct.redefining.getproductgrouplist';
$apiMethodName
public function getRequest(): array
return $this->build();
}