CancelAllOrderRequest::getSettleCoin()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 2
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Carpenstar\ByBitAPI\Derivatives\Contract\Order\CancelAllOrder\Request;
4
5
use Carpenstar\ByBitAPI\Core\Objects\AbstractParameters;
6
use Carpenstar\ByBitAPI\Derivatives\Contract\Order\CancelAllOrder\Interfaces\ICancelAllOrderRequestInterface;
7
8
class CancelAllOrderRequest extends AbstractParameters implements ICancelAllOrderRequestInterface
9
{
10
    /**
11
     * Symbol name
12
     * @var string $symbol
13
     */
14
    protected string $symbol;
15
16
    /**
17
     * Cancel all open orders by base coin
18
     * @var string $baseCoin
19
     */
20
    protected string $baseCoin;
21
22
    /**
23
     * Cancel all open orders by settle coin
24
     * @var string $settleCoin
25
     */
26
    protected string $settleCoin;
27
28
    /**
29
     * @return string
30
     */
31
    public function getSymbol(): string
32
    {
33
        return $this->symbol;
34
    }
35
36
    /**
37
     * @param string $symbol
38
     * @return CancelAllOrderRequest
39
     */
40
    public function setSymbol(string $symbol): self
41
    {
42
        $this->symbol = $symbol;
43
        return $this;
44
    }
45
46
    /**
47
     * @return string
48
     */
49
    public function getBaseCoin(): string
50
    {
51
        return $this->baseCoin;
52
    }
53
54
    /**
55
     * @param string $baseCoin
56
     * @return CancelAllOrderRequest
57
     */
58
    public function setBaseCoin(string $baseCoin): self
59
    {
60
        $this->baseCoin = $baseCoin;
61
        return $this;
62
    }
63
64
    /**
65
     * @return string
66
     */
67
    public function getSettleCoin(): string
68
    {
69
        return $this->settleCoin;
70
    }
71
72
    /**
73
     * @param string $settleCoin
74
     * @return CancelAllOrderRequest
75
     */
76
    public function setSettleCoin(string $settleCoin): self
77
    {
78
        $this->settleCoin = $settleCoin;
79
        return $this;
80
    }
81
}
82