Completed
Push — master ( ff70ce...f7d289 )
by Stefan
02:30
created

Weborder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 151
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 151
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace BecosoftApi\Model;
4
5
use Illuminate\Support\Collection;
6
7
/**
8
 * Class Weborder
9
 * @package BecosoftApi\Model
10
 */
11
class Weborder extends AbstractModel
12
{
13
    /**
14
     * @var int
15
     */
16
    public $WeborderId;
17
18
    /**
19
     * @var int
20
     */
21
    public $Klantnummer;
22
23
    /**
24
     * @var \DateTime
25
     */
26
    public $Datum;
27
28
    /**
29
     * @var string
30
     */
31
    public $verkoper;
32
33
    /**
34
     * @var bool
35
     */
36
    public $Afgehandeld;
37
38
    /**
39
     * @var string
40
     */
41
    public $opmerkingorder;
42
43
    /**
44
     * @var int
45
     */
46
    public $leveringsadres;
47
48
    /**
49
     * @var string
50
     */
51
    public $ordertype;
52
53
    /**
54
     * @var float
55
     */
56
    public $totaal;
57
58
    /**
59
     * @var int
60
     */
61
    public $verzendtype;
62
63
    /**
64
     * @var string
65
     */
66
    public $kortingcode;
67
68
    /**
69
     * @var string
70
     */
71
    public $LeveradresNaam;
72
73
    /**
74
     * @var string
75
     */
76
    public $LeveradresStraat;
77
78
    /**
79
     * @var string
80
     */
81
    public $LeveradresExtraAdreslijn;
82
83
    /**
84
     * @var string
85
     */
86
    public $LeveradresLand;
87
88
    /**
89
     * @var string
90
     */
91
    public $LeveradresPostcode;
92
93
    /**
94
     * @var string
95
     */
96
    public $LeveradresPlaats;
97
98
    /**
99
     * @var string
100
     */
101
    public $LeveradresHuisnummer;
102
103
    /**
104
     * @var string
105
     */
106
    public $LeveradresBus;
107
108
    /**
109
     * @var string
110
     */
111
    public $Email;
112
113
    /**
114
     * @var int
115
     */
116
    public $ecomklantid;
117
118
    /**
119
     * @var string
120
     */
121
    public $ecomRemark;
122
123
    /**
124
     * @var string
125
     */
126
    public $ecomCurrency;
127
128
    /**
129
     * @var string
130
     */
131
    public $kialaPointID;
132
133
    /**
134
     * @var string
135
     */
136
    public $kialaName;
137
138
    /**
139
     * @var bool
140
     */
141
    public $avondlevering;
142
143
    /**
144
     * @var Collection|WeborderDetail[]
145
     */
146
    public $Details;
147
148
    /**
149
     * @var Collection|WeborderPayment[]
150
     */
151
    public $Payments;
152
153
    /**
154
     * Weborder constructor.
155
     */
156
    public function __construct()
157
    {
158
        $this->Details = new Collection();
159
        $this->Payments = new Collection();
160
    }
161
}
162