1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
/**
* This file is part of the Klarna KP module
*
* (c) Klarna Bank AB (publ)
*
* For the full copyright and license information, please view the NOTICE
* and LICENSE files that were distributed with this source code.
*/
namespace Klarna\Kp\Model\Api\Request;
use Klarna\Kp\Api\Data\OrderlineInterface;
/**
* Class Orderline
*
* @package Klarna\Kp\Model\Api\Request
*/
class Orderline implements OrderlineInterface
{
use \Klarna\Kp\Model\Api\Export;
/**
* @var string
*/
private $type;
/**
* @var string
*/
private $reference;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $quantity;
/**
* @var string
*/
private $quantity_unit;
/**
* @var int
*/
private $unit_price;
/**
* @var int
*/
private $tax_rate;
/**
* @var int
*/
private $total_amount;
/**
* @var int
*/
private $total_discount_amount;
/**
* @var int
*/
private $total_tax_amount;
/**
* @var string
*/
private $product_url;
/**
* @var string
*/
private $image_url;
/**
* Constructor.
*
* @param array $data
*/
public function __construct($data = [])
{
foreach ($data as $key => $value) {
if (property_exists($this, $key)) {
$this->$key = $value;
$this->exports[] = $key;
}
}
}
/**
* Orderline type
*
* Possible values:
*
* * physical (default)
* * discount
* * shipping_fee
*
* @param string $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* Descriptive item name.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @param string $product_url
*/
public function setProductUrl($product_url)
{
$this->product_url = $product_url;
}
/**
* @param string $image_url
*/
public function setImageUrl($image_url)
{
$this->image_url = $image_url;
}
/**
* The item quantity.
*
* @param int $quantity
*/
public function setQuantity($quantity)
{
$this->quantity = $quantity;
}
/**
* Descriptive unit, e.g. kg, pcs.
*
* @param string $quantity_unit
*/
public function setQuantityUnit($quantity_unit)
{
$this->quantity_unit = $quantity_unit;
}
/**
* Includes tax, excludes discount. Implicit decimal (eg 1000 instead of 10.00)
*
* @param int $unit_price
*/
public function setUnitPrice($unit_price)
{
$this->unit_price = $unit_price;
}
/**
* In percent, two implicit decimals, i.e. 2500 = 25%.
*
* @param int $tax_rate
*/
public function setTaxRate($tax_rate)
{
$this->tax_rate = $tax_rate;
}
/**
* Must be within ±1 of total_amount - total_amount 10000 / (10000 + tax_rate). Negative when type is discount.
*
* @param int $total_tax_amount
*/
public function setTotalTaxAmount($total_tax_amount)
{
$this->total_tax_amount = $total_tax_amount;
}
/**
* Includes tax. Implicit decimal (eg 1000 instead of 10.00)
*
* @param int $total_discount_amount
*/
public function setTotalDiscountAmount($total_discount_amount)
{
$this->total_discount_amount = $total_discount_amount;
}
/**
* Includes tax and discount. Must match (quantity * unit_price) + total discount amount within ±quantity.
*
* @param int $total_amount
*/
public function setTotalAmount($total_amount)
{
$this->total_amount = $total_amount;
}
/**
* Article number, SKU or similar.
*
* @param string $reference
*/
public function setReference($reference)
{
$this->reference = $reference;
}
/**
* @return int
*/
public function getTotal()
{
return $this->total_amount;
}
}