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