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:
11: /*
12: <xs:complexType name="sanVerificationSystemState">
13: <xs:sequence>
14: <xs:element name="method" type="tns:sanVerificationSystemMethodEnum"/>
15: </xs:sequence>
16: </xs:complexType>
17: */
18:
19: /**
20: * This class represents the sanVerificationSystemState WSDL type.
21: *
22: * It is based on the PartnerAPIType class and derives properties and methods from that class.
23: *
24: * @method PartnerAPITypeSanVerificationSystemState setMethod(string $value) Sets the method list.
25: * @method string getName() Gets the method list.
26: * @property string $name Gets the method list.
27: *
28: * @package types
29: */
30: class PartnerAPITypeSanVerificationSystemState extends PartnerAPIType {
31:
32: protected function initData() {
33: $n = array(
34: 'method' => array('min' => 1, 'max' => NULL, 'value' => NULL, 'type' => 'string', 'nillable' => FALSE),
35: );
36: return $n;
37: }
38:
39:
40: }
41: