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="approverEmailPrefixType">
11: <xs:restriction base="xs:string">
12: <xs:enumeration value="ADMIN"/>
13: <xs:enumeration value="ADMINISTRATOR"/>
14: <xs:enumeration value="POSTMASTER"/>
15: <xs:enumeration value="HOSTMASTER"/>
16: <xs:enumeration value="WEBMASTER"/>
17: </xs:restriction>
18: </xs:simpleType>
19: */
20:
21: /**
22: * This class represents the approverEmailPrefixType WSDL type.
23: *
24: * This is a set of constant values representing enumeration type from WSDL file.
25: *
26: * @package types
27: */
28: class PartnerAPITypeApproverEmailPrefixType {
29:
30: const ADMIN = "ADMIN";
31: const ADMINISTRATOR = "ADMINISTRATOR";
32: const POSTMASTER = "POSTMASTER";
33: const HOSTMASTER = "HOSTMASTER";
34: const WEBMASTER = "WEBMASTER";
35:
36: private function __construct() {
37: }
38:
39:
40: }
41: