for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carpenstar\ByBitAPI\Derivatives\MarketData\RiskLimit\Request;
use Carpenstar\ByBitAPI\Core\Objects\OptionsEntity;
class RiskLimitsRequestOptions extends OptionsEntity
{
/**
* Product type. linear
* Only linear support, now
* @var string $category
*/
protected string $category = "linear";
protected string $symbol;
public function setSymbol(string $symbol): self
$this->symbol = $symbol;
return $this;
}
* @return string
public function getSymbol(): string
return $this->symbol;
public function getCategory(): string
return $this->category;