Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class BestBidAskPriceRequest extends AbstractParameters |
||
7 | { |
||
8 | /** |
||
9 | * Name of the trading pair |
||
10 | * @required true |
||
11 | * @var string $symbol |
||
12 | */ |
||
13 | protected string $symbol; |
||
14 | |||
15 | public function __construct() |
||
16 | { |
||
17 | $this->setRequiredField('symbol'); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @param string $symbol |
||
22 | * @return BestBidAskPriceRequest |
||
23 | */ |
||
24 | public function setSymbol(string $symbol): self |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getSymbol(): string |
||
36 | } |
||
37 | } |