File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -320,7 +320,8 @@ protected function createDeregister($transaction){
320
320
/** @var Deregister $transaction */
321
321
return [
322
322
'referenceUuid ' => $ transaction ->getReferenceUuid (),
323
- 'transactionToken ' => $ transaction ->getTransactionToken ()
323
+ 'transactionToken ' => $ transaction ->getTransactionToken (),
324
+ 'tokenType ' => $ transaction ->getTokenType (),
324
325
];
325
326
}
326
327
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ class Deregister extends AbstractTransactionWithReference {
14
14
/** @var string */
15
15
protected $ transactionToken ;
16
16
17
+ /** @var string */
18
+ protected $ tokenType ;
17
19
18
20
/**
19
21
* @return string
@@ -32,4 +34,23 @@ public function setTransactionToken($transactionToken)
32
34
return $ this ;
33
35
}
34
36
37
+ /**
38
+ * @return string
39
+ */
40
+ public function getTokenType ()
41
+ {
42
+ return $ this ->tokenType ;
43
+ }
44
+
45
+ /**
46
+ * @param string $tokenType
47
+ *
48
+ * @return Deregister
49
+ */
50
+ public function setTokenType ($ tokenType )
51
+ {
52
+ $ this ->tokenType = $ tokenType ;
53
+ return $ this ;
54
+ }
55
+
35
56
}
You can’t perform that action at this time.
0 commit comments