for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList;
use Carpenstar\ByBitAPI\Core\Endpoints\PrivateEndpoint;
use Carpenstar\ByBitAPI\Core\Interfaces\IGetEndpointInterface;
use Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList\Request\GetExecutionListRequest;
use Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList\Response\GetExecutionListResponse;
class GetExecutionList extends PrivateEndpoint implements IGetEndpointInterface
{
protected function getEndpointUrl(): string
return "/contract/v3/private/execution/list";
}
protected function getResponseClassname(): string
return GetExecutionListResponse::class;
protected function getRequestClassname(): string
return GetExecutionListRequest::class;