for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carpenstar\ByBitAPI\Spot\MarketData\LastTradedPrice\Request;
use Carpenstar\ByBitAPI\Core\Objects\AbstractParameters;
use Carpenstar\ByBitAPI\Spot\MarketData\LastTradedPrice\Interfaces\ILastTradedPriceRequestInterface;
use Carpenstar\ByBitAPI\Spot\MarketData\LastTradedPrice\LastTradedPrice;
class LastTradedPriceRequest extends AbstractParameters implements ILastTradedPriceRequestInterface
{
/**
* Name of the trading pair
* @required false
* @var string $symbol
*/
protected string $symbol;
* @return string
public function getSymbol(): string
return $this->symbol;
}
* @param string $symbol
* @return LastTradedPrice
public function setSymbol(string $symbol): self
$this->symbol = $symbol;
return $this;
return $this
Carpenstar\ByBitAPI\Spot...\LastTradedPriceRequest
Carpenstar\ByBitAPI\Spot...edPrice\LastTradedPrice