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