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