1 | <?php |
||
7 | class PaymentACK extends \DrSlump\Protobuf\Message |
||
8 | { |
||
9 | |||
10 | /** @var \Bip70\Protobuf\Proto\Payment */ |
||
11 | public $payment; |
||
12 | |||
13 | /** @var string */ |
||
14 | public $memo; |
||
15 | |||
16 | |||
17 | /** @var \Closure[] */ |
||
18 | protected static $__extensions = array(); |
||
19 | |||
20 | 1 | public static function descriptor() |
|
47 | |||
48 | /** |
||
49 | * Check if <payment> has a value |
||
50 | * |
||
51 | * @return boolean |
||
52 | */ |
||
53 | 1 | public function hasPayment() |
|
57 | |||
58 | /** |
||
59 | * Clear <payment> value |
||
60 | * |
||
61 | * @return \Bip70\Protobuf\Proto\PaymentACK |
||
62 | */ |
||
63 | 1 | public function clearPayment() |
|
67 | |||
68 | /** |
||
69 | * Get <payment> value |
||
70 | * |
||
71 | * @return \Bip70\Protobuf\Proto\Payment |
||
72 | */ |
||
73 | 1 | public function getPayment() |
|
77 | |||
78 | /** |
||
79 | * Set <payment> value |
||
80 | * |
||
81 | * @param \Bip70\Protobuf\Proto\Payment $value |
||
82 | * @return \Bip70\Protobuf\Proto\PaymentACK |
||
83 | */ |
||
84 | 2 | public function setPayment(\Bip70\Protobuf\Proto\Payment $value) |
|
88 | |||
89 | /** |
||
90 | * Check if <memo> has a value |
||
91 | * |
||
92 | * @return boolean |
||
93 | */ |
||
94 | 1 | public function hasMemo() |
|
98 | |||
99 | /** |
||
100 | * Clear <memo> value |
||
101 | * |
||
102 | * @return \Bip70\Protobuf\Proto\PaymentACK |
||
103 | */ |
||
104 | 1 | public function clearMemo() |
|
108 | |||
109 | /** |
||
110 | * Get <memo> value |
||
111 | * |
||
112 | * @return string |
||
113 | */ |
||
114 | 1 | public function getMemo() |
|
118 | |||
119 | /** |
||
120 | * Set <memo> value |
||
121 | * |
||
122 | * @param string $value |
||
123 | * @return \Bip70\Protobuf\Proto\PaymentACK |
||
124 | */ |
||
125 | 1 | public function setMemo($value) |
|
129 | } |
||
130 |