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/typeGetOrdersResponse.php';
11:
12: /*
13: <message name="PartnerServicePortType_getOrderByOrderIDResponse">
14: <part element="tns:getOrderByOrderIDResponse" name="getOrderByOrderIDResponse">
15: </part>
16: </message>
17: <xs:element name="getOrderByOrderIDResponse" nillable="true" type="tns:getOrdersResponse"/>
18: */
19:
20: /**
21: * This class represents the PartnerServicePortType_getOrderByOrderIDResponse WSDL message.
22: *
23: * It has one part 'getOrderByOrderIDResponse' accessible as property or by invoking a getter method.
24: *
25: * @property PartnerAPITypeGetOrdersResponse $getOrderByOrderIDResponse
26: * @method PartnerAPITypeGetOrdersResponse getGetOrderByOrderIDResponse()
27: *
28: * @package messages
29: */
30: class PartnerAPIMessageGetOrderByOrderIDResponse 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: 'getOrderByOrderIDResponse' => new PartnerAPITypeGetOrdersResponse()
41: );
42: }
43:
44:
45: }
46: