Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class GetTradingFeeRateRequest extends AbstractParameters |
||
7 | { |
||
8 | /** |
||
9 | * Symbol name |
||
10 | * @var string $symbol |
||
11 | */ |
||
12 | protected string $symbol; |
||
13 | |||
14 | /** |
||
15 | * @return string |
||
16 | */ |
||
17 | public function getSymbol(): string |
||
18 | { |
||
19 | return $this->symbol; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param string $symbol |
||
24 | * @return GetTradingFeeRateRequest |
||
25 | */ |
||
26 | public function setSymbol(string $symbol): self |
||
30 | } |
||
31 | } |