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 'typeResponse.php';
10: require_once 'typeSanVerificationStates.php';
11:
12: /*
13: <xs:complexType name="getSanVerificationStateResponse">
14: <xs:complexContent>
15: <xs:extension base="tns:response">
16: <xs:sequence>
17: <xs:element name="sanVerifications" type="tns:sanVerificationStates"/>
18: </xs:sequence>
19: </xs:extension>
20: </xs:complexContent>
21: </xs:complexType>
22: */
23:
24: /**
25: * This class represents the getSanVerificationStateResponse WSDL type.
26: *
27: * It is an extension to the PartnerAPITypeResponse class.
28: *
29: * @method PartnerAPITypeGetSanVerificationStateResponse setSanVerifications(PartnerAPITypeSanVerificationStates $value) Sets the sanVerifications element.
30: * @method PartnerAPITypeSanVerificationStates getSanVerifications() Gets the sanVerifications element or NULL.
31: * @property PartnerAPITypeSanVerificationStates $sanVerifications Gets the sanVerifications element or NULL.
32: *
33: * @package types
34: */
35: class PartnerAPITypeGetSanVerificationStateResponse extends PartnerAPITypeResponse {
36:
37: protected function initData() {
38: $p = parent::initData();
39: $n = array(
40: 'sanVerifications' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'PartnerAPITypeSanVerificationStates', 'nillable' => FALSE)
41: );
42: $n = array_merge($p, $n);
43: return $n;
44: }
45:
46:
47: }
48: