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 pathPayoutTransaction.php
95 lines (82 loc) · 1.52 KB
/
PayoutTransaction.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
<?php
/**
* @license Copyright 2011-2014 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay;
/**
* Class PayoutTransaction
* @package Bitpay
*/
class PayoutTransaction implements PayoutTransactionInterface
{
/**
* @var string
*/
protected $txid;
/**
* @var float
*/
protected $amount;
/**
* @var string
*/
protected $date;
/**
* @inheritdoc
*/
public function getTransactionId()
{
return $this->txid;
}
/**
* Set transaction ID for payout.
* @param $txid
* @return $this
*/
public function setTransactionId($txid)
{
if (!empty($txid)) {
$this->txid = $txid;
}
return $this;
}
/**
* @inheritdoc
*/
public function getAmount()
{
return $this->amount;
}
/**
* Set the amount of bitcoin paid in the paout.
* @param $amount
* @return $this
*/
public function setAmount($amount)
{
if (!empty($amount)) {
$this->amount = $amount;
}
return $this;
}
/**
* @inheritdoc
*/
public function getDate()
{
return $this->date;
}
/**
* Set the date and time of when the payment was sent.
* @param $date
* @return $this
*/
public function setDate($date)
{
if (!empty($date)) {
$this->date = $date;
}
return $this;
}
}