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