Completed
Push — master ( 6e6d73...1dcfbd )
by Cesar
14s queued 11s
created

ActionUrls   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 150
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 25
dl 0
loc 150
rs 10
c 0
b 0
f 0
wmc 12

12 Methods

Rating   Name   Duplication   Size   Complexity  
A setUpsell() 0 5 1
A getInstoreSms() 0 3 1
A setInstoreEmail() 0 5 1
A getUpsell() 0 3 1
A getForm() 0 3 1
A setConfirm() 0 5 1
A getConfirm() 0 3 1
A getRefund() 0 3 1
A getInstoreEmail() 0 3 1
A setInstoreSms() 0 5 1
A setForm() 0 5 1
A setRefund() 0 5 1
1
<?php
2
3
namespace Pagantis\OrdersApiClient\Model\Order;
4
5
use Pagantis\OrdersApiClient\Model\AbstractModel;
6
7
/**
8
 * Class ActionUrls
9
 * @package Pagantis\OrdersApiClient\Model\Order
10
 */
11
class ActionUrls extends AbstractModel
12
{
13
    /**
14
     * @var string $confirm
15
     */
16
    protected $confirm;
17
18
    /**
19
     * @var string $form
20
     */
21
    protected $form;
22
23
    /**
24
     * @var string $instoreEmail
25
     */
26
    protected $instoreEmail;
27
28
    /**
29
     * @var string $instoreSms
30
     */
31
    protected $instoreSms;
32
33
    /**
34
     * @var string $refund
35
     */
36
    protected $refund;
37
38
    /**
39
     * @var string $upsell
40
     */
41
    protected $upsell;
42
43
    /**
44
     * @return string
45
     */
46
    public function getConfirm()
47
    {
48
        return $this->confirm;
49
    }
50
51
    /**
52
     * @param string $confirm
53
     *
54
     * @return $this
55
     */
56
    public function setConfirm($confirm)
57
    {
58
        $this->confirm = $confirm;
59
60
        return $this;
61
    }
62
63
    /**
64
     * @return string
65
     */
66
    public function getForm()
67
    {
68
        return $this->form;
69
    }
70
71
    /**
72
     * @param string $form
73
     *
74
     * @return $this
75
     */
76
    public function setForm($form)
77
    {
78
        $this->form = $form;
79
80
        return $this;
81
    }
82
83
    /**
84
     * @return string
85
     */
86
    public function getInstoreEmail()
87
    {
88
        return $this->instoreEmail;
89
    }
90
91
    /**
92
     * @param string $instoreEmail
93
     *
94
     * @return $this
95
     */
96
    public function setInstoreEmail($instoreEmail)
97
    {
98
        $this->instoreEmail = $instoreEmail;
99
100
        return $this;
101
    }
102
103
    /**
104
     * @return string
105
     */
106
    public function getInstoreSms()
107
    {
108
        return $this->instoreSms;
109
    }
110
111
    /**
112
     * @param string $instoreSms
113
     *
114
     * @return $this
115
     */
116
    public function setInstoreSms($instoreSms)
117
    {
118
        $this->instoreSms = $instoreSms;
119
120
        return $this;
121
    }
122
123
    /**
124
     * @return string
125
     */
126
    public function getRefund()
127
    {
128
        return $this->refund;
129
    }
130
131
    /**
132
     * @param string $refund
133
     *
134
     * @return $this
135
     */
136
    public function setRefund($refund)
137
    {
138
        $this->refund = $refund;
139
140
        return $this;
141
    }
142
143
    /**
144
     * @return string
145
     */
146
    public function getUpsell()
147
    {
148
        return $this->upsell;
149
    }
150
151
    /**
152
     * @param string $upsell
153
     *
154
     * @return $this
155
     */
156
    public function setUpsell($upsell)
157
    {
158
        $this->upsell = $upsell;
159
160
        return $this;
161
    }
162
}
163