@@ -48,6 +48,11 @@ class GetMerchantDetailsResponse extends ANetApiResponseType
4848 */
4949 private $ currencies = null ;
5050
51+ /**
52+ * @property string $publicClientKey
53+ */
54+ private $ publicClientKey = null ;
55+
5156 /**
5257 * Gets as isTestMode
5358 *
@@ -66,7 +71,7 @@ public function getIsTestMode()
6671 */
6772 public function setIsTestMode ($ isTestMode )
6873 {
69- $ this ->isTestMode = $ isTestMode ;
74+ $ this ->isTestMode = $ isTestMode ;
7075 return $ this ;
7176 }
7277
@@ -78,7 +83,7 @@ public function setIsTestMode($isTestMode)
7883 */
7984 public function addToProcessors (\net \authorize \api \contract \v1 \ProcessorType $ processor )
8085 {
81- $ this ->processors [] = $ processor ;
86+ $ this ->processors [] = $ processor ;
8287 return $ this ;
8388 }
8489
@@ -122,7 +127,7 @@ public function getProcessors()
122127 */
123128 public function setProcessors (array $ processors )
124129 {
125- $ this ->processors = $ processors ;
130+ $ this ->processors = $ processors ;
126131 return $ this ;
127132 }
128133
@@ -144,7 +149,7 @@ public function getMerchantName()
144149 */
145150 public function setMerchantName ($ merchantName )
146151 {
147- $ this ->merchantName = $ merchantName ;
152+ $ this ->merchantName = $ merchantName ;
148153 return $ this ;
149154 }
150155
@@ -166,7 +171,7 @@ public function getGatewayId()
166171 */
167172 public function setGatewayId ($ gatewayId )
168173 {
169- $ this ->gatewayId = $ gatewayId ;
174+ $ this ->gatewayId = $ gatewayId ;
170175 return $ this ;
171176 }
172177
@@ -178,7 +183,7 @@ public function setGatewayId($gatewayId)
178183 */
179184 public function addToMarketTypes ($ marketType )
180185 {
181- $ this ->marketTypes [] = $ marketType ;
186+ $ this ->marketTypes [] = $ marketType ;
182187 return $ this ;
183188 }
184189
@@ -222,7 +227,7 @@ public function getMarketTypes()
222227 */
223228 public function setMarketTypes (array $ marketTypes )
224229 {
225- $ this ->marketTypes = $ marketTypes ;
230+ $ this ->marketTypes = $ marketTypes ;
226231 return $ this ;
227232 }
228233
@@ -234,7 +239,7 @@ public function setMarketTypes(array $marketTypes)
234239 */
235240 public function addToProductCodes ($ productCode )
236241 {
237- $ this ->productCodes [] = $ productCode ;
242+ $ this ->productCodes [] = $ productCode ;
238243 return $ this ;
239244 }
240245
@@ -278,7 +283,7 @@ public function getProductCodes()
278283 */
279284 public function setProductCodes (array $ productCodes )
280285 {
281- $ this ->productCodes = $ productCodes ;
286+ $ this ->productCodes = $ productCodes ;
282287 return $ this ;
283288 }
284289
@@ -290,7 +295,7 @@ public function setProductCodes(array $productCodes)
290295 */
291296 public function addToPaymentMethods ($ paymentMethod )
292297 {
293- $ this ->paymentMethods [] = $ paymentMethod ;
298+ $ this ->paymentMethods [] = $ paymentMethod ;
294299 return $ this ;
295300 }
296301
@@ -334,7 +339,7 @@ public function getPaymentMethods()
334339 */
335340 public function setPaymentMethods (array $ paymentMethods )
336341 {
337- $ this ->paymentMethods = $ paymentMethods ;
342+ $ this ->paymentMethods = $ paymentMethods ;
338343 return $ this ;
339344 }
340345
@@ -346,7 +351,7 @@ public function setPaymentMethods(array $paymentMethods)
346351 */
347352 public function addToCurrencies ($ currency )
348353 {
349- $ this ->currencies [] = $ currency ;
354+ $ this ->currencies [] = $ currency ;
350355 return $ this ;
351356 }
352357
@@ -390,7 +395,29 @@ public function getCurrencies()
390395 */
391396 public function setCurrencies (array $ currencies )
392397 {
393- $ this ->currencies = $ currencies ;
398+ $ this ->currencies = $ currencies ;
399+ return $ this ;
400+ }
401+
402+ /**
403+ * Gets as publicClientKey
404+ *
405+ * @return string
406+ */
407+ public function getPublicClientKey ()
408+ {
409+ return $ this ->publicClientKey ;
410+ }
411+
412+ /**
413+ * Sets a new publicClientKey
414+ *
415+ * @param string $publicClientKey
416+ * @return self
417+ */
418+ public function setPublicClientKey ($ publicClientKey )
419+ {
420+ $ this ->publicClientKey = $ publicClientKey ;
394421 return $ this ;
395422 }
396423
0 commit comments