1: <?php
2: /**
3: * Partner API Library
4: *
5: * @copyright Copyright (c) 2020 Asseco Data Systems SA
6: * @license license.txt
7: */
8:
9: require_once 'typeResponse.php';
10:
11: /*
12: <xs:complexType name="performSanVerificationResponse">
13: <xs:complexContent>
14: <xs:extension base="tns:response">
15: <xs:sequence/>
16: </xs:extension>
17: </xs:complexContent>
18: </xs:complexType>
19: */
20:
21: /**
22: * This class represents the performSanVerificationResponse WSDL type.
23: *
24: * It is an extension to the PartnerAPITypeResponse class.
25: *
26: * @package types
27: */
28: class PartnerAPITypePerformSanVerificationResponse extends PartnerAPITypeResponse {
29:
30: protected function initData() {
31: return parent::initData();
32: }
33:
34:
35: }
36: