-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathReceipt.php
More file actions
221 lines (191 loc) · 4.13 KB
/
Copy pathReceipt.php
File metadata and controls
221 lines (191 loc) · 4.13 KB
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
<?php
namespace Tgallice\FBMessenger\Model\Attachment\Template;
use Tgallice\FBMessenger\Model\Address;
use Tgallice\FBMessenger\Model\Attachment\Template;
use Tgallice\FBMessenger\Model\Attachment\Template\Receipt\Element;
use Tgallice\FBMessenger\Model\Attachment\Template\Receipt\Summary;
use Tgallice\FBMessenger\Model\Attachment\Template\Receipt\Adjustment;
class Receipt extends Template
{
/**
* @var string
*/
private $recipientName;
/**
* @var string
*/
private $orderNumber;
/**
* @var string
*/
private $currency;
/**
* @var string
*/
private $paymentMethod;
/**
* @var Element[]
*/
private $elements;
/**
* @var Summary
*/
private $summary;
/**
* @var null|string
*/
private $timestamp;
/**
* @var null|string
*/
private $orderUrl;
/**
* @var null|Address
*/
private $address;
/**
* @var Adjustment[]
*/
private $adjustments;
/**
* @param string $recipientName
* @param string $orderNumber
* @param string $currency
* @param string $paymentMethod
* @param Element[] $elements
* @param Summary $summary
*/
public function __construct($recipientName, $orderNumber, $currency, $paymentMethod, array $elements, Summary $summary)
{
$this->recipientName = $recipientName;
$this->orderNumber = $orderNumber;
$this->currency = $currency;
$this->paymentMethod = $paymentMethod;
$this->elements = $elements;
$this->summary = $summary;
}
/**
* @return string
*/
public function getRecipientName()
{
return $this->recipientName;
}
/**
* @return string
*/
public function getOrderNumber()
{
return $this->orderNumber;
}
/**
* @return string
*/
public function getCurrency()
{
return $this->currency;
}
/**
* @return string
*/
public function getPaymentMethod()
{
return $this->paymentMethod;
}
/**
* @return Receipt\Element[]
*/
public function getElements()
{
return $this->elements;
}
/**
* @return Summary
*/
public function getSummary()
{
return $this->summary;
}
/**
* @return null|string
*/
public function getTimestamp()
{
return $this->timestamp;
}
/**
* @return null|string
*/
public function getOrderUrl()
{
return $this->orderUrl;
}
/**
* @return null|Address
*/
public function getAddress()
{
return $this->address;
}
/**
* @return Adjustment[]
*/
public function getAdjustments()
{
return $this->adjustments;
}
/**
* @return string
*/
public function getType()
{
return Template::TYPE_RECEIPT;
}
/**
* @param null|string $timestamp
*/
public function setTimestamp($timestamp)
{
$this->timestamp = $timestamp;
}
/**
* @param null|string $orderUrl
*/
public function setOrderUrl($orderUrl)
{
$this->orderUrl = $orderUrl;
}
/**
* @param null|Address $address
*/
public function setAddress(?Address $address = null)
{
$this->address = $address;
}
/**
* @param Adjustment[] $adjustments
*/
public function setAdjustments(array $adjustments)
{
$this->adjustments = $adjustments;
}
/**
* @inheritdoc
*/
public function jsonSerialize()
{
return [
'template_type' => $this->getType(),
'recipient_name' => $this->recipientName,
'order_number' => $this->orderNumber,
'currency' => $this->currency,
'payment_method' => $this->paymentMethod,
'timestamp' => $this->timestamp,
'order_url' => $this->orderUrl,
'elements' => $this->elements,
'address' => $this->address,
'summary' => $this->summary,
'adjustments' => $this->adjustments,
];
}
}