ExBestOffersOverrides::getBestPricesDepth()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Betfair\Model;
4
5
class ExBestOffersOverrides extends BetfairSerializable
6
{
7
    /** @var  int */
8
    protected $bestPricesDepth;
9
10
    /** @var  RollupModel */
11
    protected $rollupModel;
12
13
    /** @var  int */
14
    protected $rollupLimit;
15
16
    /** @var  double */
17
    protected $rollupLiabilityThreshold;
18
19
    /** @var  double */
20
    protected $rollupLiabilityFactor;
21
22
    /**
23
     * @param int $bestPricesDepth
24
     */
25
    public function setBestPricesDepth($bestPricesDepth)
26
    {
27
        $this->bestPricesDepth = $bestPricesDepth;
28
    }
29
30
    /**
31
     * @return int
32
     */
33
    public function getBestPricesDepth()
34
    {
35
        return $this->bestPricesDepth;
36
    }
37
38
    /**
39
     * @param float $rollupLiabilityFactor
40
     */
41
    public function setRollupLiabilityFactor($rollupLiabilityFactor)
42
    {
43
        $this->rollupLiabilityFactor = $rollupLiabilityFactor;
44
    }
45
46
    /**
47
     * @return float
48
     */
49
    public function getRollupLiabilityFactor()
50
    {
51
        return $this->rollupLiabilityFactor;
52
    }
53
54
    /**
55
     * @param float $rollupLiabilityThreshold
56
     */
57
    public function setRollupLiabilityThreshold($rollupLiabilityThreshold)
58
    {
59
        $this->rollupLiabilityThreshold = $rollupLiabilityThreshold;
60
    }
61
62
    /**
63
     * @return float
64
     */
65
    public function getRollupLiabilityThreshold()
66
    {
67
        return $this->rollupLiabilityThreshold;
68
    }
69
70
    /**
71
     * @param int $rollupLimit
72
     */
73
    public function setRollupLimit($rollupLimit)
74
    {
75
        $this->rollupLimit = $rollupLimit;
76
    }
77
78
    /**
79
     * @return int
80
     */
81
    public function getRollupLimit()
82
    {
83
        return $this->rollupLimit;
84
    }
85
86
    /**
87
     * @param \Betfair\Model\RollupModel $rollupModel
88
     */
89
    public function setRollupModel($rollupModel)
90
    {
91
        $this->rollupModel = $rollupModel;
92
    }
93
94
    /**
95
     * @return \Betfair\Model\RollupModel
96
     */
97
    public function getRollupModel()
98
    {
99
        return $this->rollupModel;
100
    }
101
}
102