1: <?php
2: /**
3: * Partner API Library
4: *
5: * @copyright Copyright (c) 2020 Asseco Data Systems SA
6: * @license license.txt
7: */
8:
9: /*
10: <xs:simpleType name="businessCategoryEnum">
11: <xs:restriction base="xs:string">
12: <xs:enumeration value="Private Organization"/>
13: <xs:enumeration value="Government Entity"/>
14: <xs:enumeration value="Business Entity"/>
15: <xs:enumeration value="Non-Commercial Entity"/>
16: </xs:restriction>
17: </xs:simpleType>
18: */
19:
20: /**
21: * This class represents the businessCategoryEnum WSDL type.
22: *
23: * This is a set of constant values representing enumeration type from WSDL file.
24: *
25: * @package types
26: */
27: class PartnerAPITypeBusinessCategoryEnum {
28:
29: const PRIVATE_ORGANIZATION = "Private Organization";
30: const GOVERNMENT_ENTITY = "Government Entity";
31: const BUSINESS_ENTITY = "Business Entity";
32: const NON_COMMERCIAL_ENTITY = "Non-Commercial Entity";
33:
34: private function __construct() {
35: }
36:
37:
38: }
39: