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