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