We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 481bc54 + a054950 commit ba6186eCopy full SHA for ba6186e
src/Enum/TransactionStatus.php
@@ -0,0 +1,21 @@
1
+<?php
2
+
3
+namespace Flowwow\Cloudpayments\Enum;
4
5
+use MyCLabs\Enum\Enum;
6
7
+/**
8
+ * Статус транзакции
9
+ *
10
+ * @see https://developers.cloudpayments.ru/#statusy-operatsiy
11
+ */
12
+class TransactionStatus extends Enum
13
+{
14
+ public const STATUS_COMPLETED = 'Completed';
15
+ public const STATUS_AUTHORIZED = 'Authorized';
16
+ public const STATUS_AWAITING_AUTHORIZED = 'AwaitingAuthentication';
17
+ public const STATUS_CANCELLED = 'Cancelled';
18
+ public const STATUS_DECLINED = 'Declined';
19
+ public const STATUS_CREATED = 'Created';
20
+ public const STATUS_PENDING = 'Pending';
21
+}
0 commit comments