Skip to content

Commit

Permalink
fix: transaction info status
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwemox committed Nov 12, 2021
1 parent 6703606 commit 2413233
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Model/TransactionInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ class TransactionInfo
public const STATE_SUCCESS = 'SUCCESS';
public const STATE_ERROR = 'ERROR';

public const STATUS_AWAITING_CERTIFICATION = 'awaiting_certification';
public const STATUS_WAITING = 'waiting';
public const STATUS_READY = 'ready';
public const STATUS_ACCESSED = 'accessed';
public const STATUS_CODE_SENT = 'code-sent';
public const STATUS_SIGNED = 'signed';
public const STATUS_PENDING_ID_DOCS = 'pending-id-docs';
public const STATUS_PENDING_VALIDATION = 'pending-validation';
public const STATUS_CANCELED = 'canceled';
public const STATUS_FAILED = 'failed';
public const STATUS_COMPLETED = 'completed';
public const STATUS_EXPIRED = 'expired';
public const STATUS_FAILED = 'failed';
public const STATUS_READY = 'ready';

/**
* @var string
Expand Down

0 comments on commit 2413233

Please sign in to comment.