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