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 'message.php';
10: require_once 'certumPartnerAPI/types/typeAddSanVerificationResponse.php';
11:
12: /*
13: <message name="PartnerServicePortType_addSanVerificationResponse">
14: <part name="addSanVerificationResponse" element="tns:addSanVerificationResponse">
15: </part>
16: </message>
17: <xs:element name="addSanVerificationResponse" nillable="true" type="tns:addSanVerificationResponse"/>
18: */
19:
20: /**
21: * This class represents the PartnerServicePortType_addSanVerificationResponse WSDL message.
22: *
23: * It has one part 'addSanVerificationResponse' accessible as property or by invoking a getter method.
24: *
25: * @property PartnerAPITypeAddSanVerificationResponse $addSanVerificationResponse
26: * @method PartnerAPITypeAddSanVerificationResponse getAddSanVerificationResponse()
27: *
28: * @package messages
29: */
30: class PartnerAPIMessageAddSanVerificationResponse extends PartnerAPIMessage {
31:
32: /**
33: * This method returns initial data for the message's parts.
34: *
35: * @return array
36: */
37: protected function initParts() {
38: return array(
39: 'addSanVerificationResponse' => new PartnerAPITypeAddSanVerificationResponse()
40: );
41: }
42:
43:
44: }
45: