1: <?php
2:
3: namespace SellerLabs\Snagshout\Model;
4:
5: class Shipping
6: {
7: /**
8: * @var string
9: */
10: protected $note;
11: /**
12: * @var string
13: */
14: protected $price;
15: /**
16: * @var int
17: */
18: protected $id;
19: /**
20: * @var int
21: */
22: protected $daysMin;
23: /**
24: * @var int
25: */
26: protected $daysMax;
27: /**
28: * @return string
29: */
30: public function getNote()
31: {
32: return $this->note;
33: }
34: /**
35: * @param string $note
36: *
37: * @return self
38: */
39: public function setNote($note = null)
40: {
41: $this->note = $note;
42: return $this;
43: }
44: /**
45: * @return string
46: */
47: public function getPrice()
48: {
49: return $this->price;
50: }
51: /**
52: * @param string $price
53: *
54: * @return self
55: */
56: public function setPrice($price = null)
57: {
58: $this->price = $price;
59: return $this;
60: }
61: /**
62: * @return int
63: */
64: public function getId()
65: {
66: return $this->id;
67: }
68: /**
69: * @param int $id
70: *
71: * @return self
72: */
73: public function setId($id = null)
74: {
75: $this->id = $id;
76: return $this;
77: }
78: /**
79: * @return int
80: */
81: public function getDaysMin()
82: {
83: return $this->daysMin;
84: }
85: /**
86: * @param int $daysMin
87: *
88: * @return self
89: */
90: public function setDaysMin($daysMin = null)
91: {
92: $this->daysMin = $daysMin;
93: return $this;
94: }
95: /**
96: * @return int
97: */
98: public function getDaysMax()
99: {
100: return $this->daysMax;
101: }
102: /**
103: * @param int $daysMax
104: *
105: * @return self
106: */
107: public function setDaysMax($daysMax = null)
108: {
109: $this->daysMax = $daysMax;
110: return $this;
111: }
112: }