Completed
Push — master ( 1c49db...1a6bbd )
by Julien
02:00
created

Order::getCustomerPaidAmount()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Mapado\RestClientSdk\Tests\Model\JsonLd;
4
5
/**
6
 * Order Model
7
 * @author Thomas di Luccio <[email protected]>
8
 */
9
class Order
10
{
11
    /**
12
     * id
13
     *
14
     * @var mixed
15
     * @access private
16
     *
17
     * @Rest\Id
18
     * @Rest\Attribute(name="id", type="string")
19
     */
20
    private $id;
21
22
    /**
23
     * customerPaidAmount
24
     *
25
     * @var int
26
     * @access private
27
     *
28
     * @Rest\Attribute(name="customerPaidAmount", type="integer")
29
     */
30
    private $customerPaidAmount;
31
32
    /**
33
     * status
34
     *
35
     * @var string
36
     * @access private
37
     *
38
     * @Rest\Attribute(name="status", type="string")
39
     */
40
    private $status;
41
42
    /**
43
     * Getter for id
44
     *
45
     * @return string
46
     */
47
    public function getId()
48
    {
49
        return $this->id;
50
    }
51
52
    /**
53
     * Setter for id
54
     *
55
     * @param string $id
56
     * @return Order
57
     */
58
    public function setId($id)
59
    {
60
        $this->id = $id;
61
62
        return $this;
63
    }
64
65
    /**
66
     * Getter for customerPaidAmount
67
     *
68
     * @return int
69
     */
70
    public function getCustomerPaidAmount()
71
    {
72
        return $this->customerPaidAmount;
73
    }
74
75
    /**
76
     * Setter for customerPaidAmount
77
     *
78
     * @param int $customerPaidAmount
79
     * @return Order
80
     */
81
    public function setCustomerPaidAmount($customerPaidAmount)
82
    {
83
        $this->customerPaidAmount = $customerPaidAmount;
84
85
        return $this;
86
    }
87
88
    /**
89
     * Getter for status
90
     *
91
     * @return string
92
     */
93
    public function getStatus()
94
    {
95
        return $this->status;
96
    }
97
98
    /**
99
     * Setter for status
100
     *
101
     * @param string $status
102
     * @return Order
103
     */
104
    public function setStatus($status)
105
    {
106
        $this->status = $status;
107
108
        return $this;
109
    }
110
}
111