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 'typeSanVerificationManualState.php';
11: require_once 'typeSanVerificationSystemState.php';
12:
13: /*
14: <xs:complexType name="sanVerificationState">
15: <xs:sequence>
16: <xs:element name="FQDN" type="xs:string"/>
17: <xs:element name="manualVerification" type="tns:sanVerificationManualState"/>
18: <xs:element maxOccurs="unbounded" minOccurs="0" name="systemVerification" type="tns:sanVerificationSystemState"/>
19: </xs:sequence>
20: </xs:complexType>
21: */
22:
23: /**
24: * This class represents the sanVerificationState WSDL type.
25: *
26: * It is based on the PartnerAPIType class and derives properties and methods from that class.
27: *
28: * @method PartnerAPITypeSanVerificationState setFQDN(string $value) Sets the FQDN element.
29: * @method string getFQDN() Gets the FQDN element.
30: * @property string $FQDN Gets the FQDN element.
31: *
32: * @method PartnerAPITypeSanVerificationState setManualVerification(PartnerAPITypeSanVerificationManualState $value) Sets the manualVerification element.
33: * @method PartnerAPITypeSanVerificationManualState getManualVerification() Gets the manualVerification element.
34: * @property PartnerAPITypeSanVerificationManualState $manualVerification Gets the manualVerification element.
35: *
36: * @method PartnerAPITypeSanVerificationState setSystemVerification(PartnerAPITypeSanVerificationSystemState $value) Sets the systemVerification element. This method removes all previously added systemVerification elements and creates a new set of systemVerification elements.
37: * @method PartnerAPITypeSanVerificationSystemState addSystemVerification(PartnerAPITypeSanVerificationSystemState $value) Adds a new systemVerification element to the existing set.
38: * @method PartnerAPITypeSanVerificationSystemState|PartnerAPITypeSanVerificationSystemState[] getSystemVerification() Gets the systemVerification element or NULL. If there is only one element, it will be returned, otherwise an array of PartnerAPITypeSanVerificationSystemState objects will be returned.
39: * @property PartnerAPITypeSanVerificationSystemState|PartnerAPITypeSanVerificationSystemState[] $systemVerification Gets the systemVerification element or NULL. If there is only one element, it will be returned, otherwise an array of PartnerAPITypeSanVerificationSystemState objects will be returned.
40: *
41: * @package types
42: */
43: class PartnerAPITypeSanVerificationState extends PartnerAPIType {
44:
45: protected function initData() {
46: $n = array(
47: 'FQDN' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'string', 'nillable' => FALSE),
48: 'manualVerification' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'PartnerAPITypeSanVerificationManualState', 'nillable' => FALSE),
49: 'systemVerification' => array('min' => 0, 'max' => 1, 'value' => NULL, 'type' => 'PartnerAPITypeSanVerificationSystemState', 'nillable' => TRUE)
50: );
51: return $n;
52: }
53:
54:
55: }
56: