File tree Expand file tree Collapse file tree
lib/net/authorize/api/contract/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,16 @@ class GetTransactionDetailsResponse extends ANetApiResponseType
1313 */
1414 private $ transaction = null ;
1515
16+ /**
17+ * @property string $clientId
18+ */
19+ private $ clientId = null ;
20+
21+ /**
22+ * @property string $transrefId
23+ */
24+ private $ transrefId = null ;
25+
1626 /**
1727 * Gets as transaction
1828 *
@@ -35,6 +45,49 @@ public function setTransaction(\net\authorize\api\contract\v1\TransactionDetails
3545 return $ this ;
3646 }
3747
48+ /**
49+ * Gets as clientId
50+ *
51+ * @return string
52+ */
53+ public function getClientId ()
54+ {
55+ return $ this ->clientId ;
56+ }
3857
39- }
58+ /**
59+ * Sets a new clientId
60+ *
61+ * @param string $clientId
62+ * @return self
63+ */
64+ public function setClientId ($ clientId )
65+ {
66+ $ this ->clientId = $ clientId ;
67+ return $ this ;
68+ }
4069
70+ /**
71+ * Gets as transrefId
72+ *
73+ * @return string
74+ */
75+ public function getTransrefId ()
76+ {
77+ return $ this ->transrefId ;
78+ }
79+
80+ /**
81+ * Sets a new transrefId
82+ *
83+ * @param string $transrefId
84+ * @return self
85+ */
86+ public function setTransrefId ($ transrefId )
87+ {
88+ $ this ->transrefId = $ transrefId ;
89+ return $ this ;
90+ }
91+
92+
93+ }
You can’t perform that action at this time.
0 commit comments