@@ -53,6 +53,22 @@ class GetMerchantDetailsResponse extends ANetApiResponseType
53
53
*/
54
54
private $ publicClientKey = null ;
55
55
56
+ /**
57
+ * @property \net\authorize\api\contract\v1\CustomerAddressType
58
+ * $businessInformation
59
+ */
60
+ private $ businessInformation = null ;
61
+
62
+ /**
63
+ * @property string $merchantTimeZone
64
+ */
65
+ private $ merchantTimeZone = null ;
66
+
67
+ /**
68
+ * @property \net\authorize\api\contract\v1\ContactDetailType[] $contactDetails
69
+ */
70
+ private $ contactDetails = null ;
71
+
56
72
/**
57
73
* Gets as isTestMode
58
74
*
@@ -421,6 +437,106 @@ public function setPublicClientKey($publicClientKey)
421
437
return $ this ;
422
438
}
423
439
440
+ /**
441
+ * Gets as businessInformation
442
+ *
443
+ * @return \net\authorize\api\contract\v1\CustomerAddressType
444
+ */
445
+ public function getBusinessInformation ()
446
+ {
447
+ return $ this ->businessInformation ;
448
+ }
449
+
450
+ /**
451
+ * Sets a new businessInformation
452
+ *
453
+ * @param \net\authorize\api\contract\v1\CustomerAddressType $businessInformation
454
+ * @return self
455
+ */
456
+ public function setBusinessInformation (\net \authorize \api \contract \v1 \CustomerAddressType $ businessInformation )
457
+ {
458
+ $ this ->businessInformation = $ businessInformation ;
459
+ return $ this ;
460
+ }
461
+
462
+ /**
463
+ * Gets as merchantTimeZone
464
+ *
465
+ * @return string
466
+ */
467
+ public function getMerchantTimeZone ()
468
+ {
469
+ return $ this ->merchantTimeZone ;
470
+ }
471
+
472
+ /**
473
+ * Sets a new merchantTimeZone
474
+ *
475
+ * @param string $merchantTimeZone
476
+ * @return self
477
+ */
478
+ public function setMerchantTimeZone ($ merchantTimeZone )
479
+ {
480
+ $ this ->merchantTimeZone = $ merchantTimeZone ;
481
+ return $ this ;
482
+ }
483
+
484
+ /**
485
+ * Adds as contactDetail
486
+ *
487
+ * @return self
488
+ * @param \net\authorize\api\contract\v1\ContactDetailType $contactDetail
489
+ */
490
+ public function addToContactDetails (\net \authorize \api \contract \v1 \ContactDetailType $ contactDetail )
491
+ {
492
+ $ this ->contactDetails [] = $ contactDetail ;
493
+ return $ this ;
494
+ }
495
+
496
+ /**
497
+ * isset contactDetails
498
+ *
499
+ * @param scalar $index
500
+ * @return boolean
501
+ */
502
+ public function issetContactDetails ($ index )
503
+ {
504
+ return isset ($ this ->contactDetails [$ index ]);
505
+ }
506
+
507
+ /**
508
+ * unset contactDetails
509
+ *
510
+ * @param scalar $index
511
+ * @return void
512
+ */
513
+ public function unsetContactDetails ($ index )
514
+ {
515
+ unset($ this ->contactDetails [$ index ]);
516
+ }
517
+
518
+ /**
519
+ * Gets as contactDetails
520
+ *
521
+ * @return \net\authorize\api\contract\v1\ContactDetailType[]
522
+ */
523
+ public function getContactDetails ()
524
+ {
525
+ return $ this ->contactDetails ;
526
+ }
527
+
528
+ /**
529
+ * Sets a new contactDetails
530
+ *
531
+ * @param \net\authorize\api\contract\v1\ContactDetailType[] $contactDetails
532
+ * @return self
533
+ */
534
+ public function setContactDetails (array $ contactDetails )
535
+ {
536
+ $ this ->contactDetails = $ contactDetails ;
537
+ return $ this ;
538
+ }
539
+
424
540
425
541
}
426
542
0 commit comments