PriceProjection::setExBestOffersOverrides()   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 1
1
<?php
2
3
namespace Betfair\Model;
4
5
class PriceProjection extends BetfairSerializable
6
{
7
8
    /** @var  array  */
9
    protected $priceData;
10
11
    /** @var  ExBestOffersOverrides */
12
    protected $exBestOffersOverrides;
13
14
    /** @var  boolean */
15
    protected $virtualise;
16
17
    /** @var  boolean */
18
    protected $rolloverStakes;
19
20
    public function __construct($priceData = array())
21
    {
22
        $this->priceData = $priceData;
23
    }
24
25
    /**
26
     * @param \Betfair\Model\ExBestOffersOverrides $exBestOffersOverrides
27
     */
28
    public function setExBestOffersOverrides($exBestOffersOverrides)
29
    {
30
        $this->exBestOffersOverrides = $exBestOffersOverrides;
31
    }
32
33
    /**
34
     * @return \Betfair\Model\ExBestOffersOverrides
35
     */
36
    public function getExBestOffersOverrides()
37
    {
38
        return $this->exBestOffersOverrides;
39
    }
40
41
    /**
42
     * @param array $priceData
43
     */
44
    public function setPriceData($priceData)
45
    {
46
        $this->priceData = $priceData;
47
    }
48
49
    /**
50
     * @return array
51
     */
52
    public function getPriceData()
53
    {
54
        return $this->priceData;
55
    }
56
57
    /**
58
     * @param boolean $rolloverStakes
59
     */
60
    public function setRolloverStakes($rolloverStakes)
61
    {
62
        $this->rolloverStakes = $rolloverStakes;
63
    }
64
65
    /**
66
     * @return boolean
67
     */
68
    public function getRolloverStakes()
69
    {
70
        return $this->rolloverStakes;
71
    }
72
73
    /**
74
     * @param boolean $virtualise
75
     */
76
    public function setVirtualise($virtualise)
77
    {
78
        $this->virtualise = $virtualise;
79
    }
80
81
    /**
82
     * @return boolean
83
     */
84
    public function getVirtualise()
85
    {
86
        return $this->virtualise;
87
    }
88
}
89