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