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\Schema;
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 Get
* @package Ticaje\AeSdk\Domain\Endpoint\Solution\Order
class Get implements ServiceRequestInterface, WorkerInterface
{
use BaseDto, ServiceRequestBuilder;
private $apiMethodName = 'aliexpress.solution.product.schema.get';
$apiMethodName
private $aliexpressCategoryId;
$aliexpressCategoryId
public function getRequest(): array
return $this->build();
}