Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class RiskLimitsRequestOptions extends OptionsEntity |
||
7 | { |
||
8 | /** |
||
9 | * Product type. linear |
||
10 | * Only linear support, now |
||
11 | * @var string $category |
||
12 | */ |
||
13 | protected string $category = "linear"; |
||
14 | |||
15 | protected string $symbol; |
||
16 | |||
17 | public function setSymbol(string $symbol): self |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getSymbol(): string |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getCategory(): string |
||
37 | } |
||
38 | } |