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 'type.php';
10: require_once 'typeOrderVerification.php';
11:
12: /*
13: <xs:complexType name="orderVerifications">
14: <xs:sequence>
15: <xs:element maxOccurs="unbounded" name="verification" type="tns:orderVerification"/>
16: </xs:sequence>
17: </xs:complexType>
18: */
19:
20: /**
21: * This class represents the orderVerifications WSDL type.
22: *
23: * It is based on the PartnerAPIType class and derives properties and methods from that class.
24: *
25: * @method PartnerAPITypeOrderVerifications setVerification(PartnerAPITypeOrderVerification $value) Sets the verification element. This method removes all previously added verification elements and creates a new set of verification elements.
26: * @method PartnerAPITypeOrderVerifications addVerification(PartnerAPITypeOrderVerification $value) Adds a new verification element to the existing set.
27: * @method PartnerAPITypeOrderVerification|PartnerAPITypeOrderVerification[] getVerification() Gets the verification element or NULL. If there is only one element, it will be returned, otherwise an array of PartnerAPITypeOrderVerification objects will be returned.
28: * @property PartnerAPITypeOrderVerification|PartnerAPITypeOrderVerification[] $verification Gets the verification element or NULL. If there is only one element, it will be returned, otherwise an array of PartnerAPITypeOrderVerification objects will be returned.
29: *
30: * @package types
31: */
32: class PartnerAPITypeOrderVerifications extends PartnerAPIType {
33:
34: protected function initData() {
35: $n = array(
36: 'verification' => array('min' => 0, 'max' => NULL, 'value' => NULL, 'type' => 'PartnerAPITypeOrderVerification', 'nillable' => FALSE)
37: );
38: return $n;
39: }
40:
41:
42: }
43: