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