This repository was archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathPayoutInstruction.php
219 lines (188 loc) · 3.7 KB
/
PayoutInstruction.php
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
<?php
/**
* @license Copyright 2011-2014 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay;
/**
* Class PayoutInstruction
* @package Bitpay
*/
class PayoutInstruction implements PayoutInstructionInterface
{
/**
* A transaction is unpaid when the payout in bitcoin has not yet occured.
*/
const STATUS_UNPAID = 'unpaid';
/**
* A transaction is marked as paid once the payroll is complete and bitcoins are
* sent to the recipient
*/
const STATUS_PAID = 'paid';
/**
* @var string
*/
protected $id;
/**
* @var array
*/
protected $btc;
/**
* @var string
*/
protected $label;
/**
* @var string
*/
protected $address;
/**
* @var float
*/
protected $amount;
/**
* @var string
*/
protected $status;
/**
* @var array
*/
protected $transactions = array();
public function __construct()
{
$this->transactions = array();
}
/**
* @inheritdoc
*/
public function getId()
{
return $this->id;
}
/**
* Set the Bitpay ID for this payout instruction
*
* @param $id
* @return $this
*/
public function setId($id)
{
if (!empty($id)) {
$this->id = trim($id);
}
return $this;
}
/**
* @inheritdoc
*/
public function getLabel()
{
return $this->label;
}
/**
* Set the employers label for this instruction.
* @param $label
* @return $this
*/
public function setLabel($label)
{
if (!empty($label)) {
$this->label = trim($label);
}
return $this;
}
/**
* @inheritdoc
*/
public function getAddress()
{
return $this->address;
}
/**
* Set the bitcoin address for this instruction.
* @param $address
* @return $this
*/
public function setAddress($address)
{
if (!empty($address)) {
$this->address = trim($address);
}
return $this;
}
/**
* @inheritdoc
*/
public function getAmount()
{
return $this->amount;
}
/**
* Set the amount for this instruction.
* @param $amount
* @return $this
*/
public function setAmount($amount)
{
if (!empty($amount)) {
$this->amount = $amount;
}
return $this;
}
/**
* @inheritdoc
*/
public function getBtc()
{
return $this->btc;
}
/**
* Set BTC array (available once rates are set)
* @param $btc
* @return $this
*/
public function setBtc($btc)
{
if (!empty($btc) && is_array($btc)) {
$this->btc = $btc;
}
return $this;
}
/**
* @inheritdoc
*/
public function getStatus()
{
return $this->status;
}
/**
* Set the status for this instruction
* @param $status
* @return $this
*/
public function setStatus($status)
{
if (!empty($status) && ctype_print($status)) {
$this->status = trim($status);
}
return $this;
}
/**
* @inheritdoc
*/
public function getTransactions()
{
return $this->transactions;
}
/**
* Add payout transaction to the
* @param PayoutTransactionInterface $transaction
* @return $this
*/
public function addTransaction(PayoutTransactionInterface $transaction)
{
if (!empty($transaction)) {
$this->transactions[] = $transaction;
}
return $this;
}
}