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