ClaimResult.php
2 months ago
ReconcileResult.php
2 months ago
ReviewResolution.php
2 months ago
ZohoCategoryMap.php
2 weeks ago
index.php
2 months ago
ClaimResult.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace CommerceBird\Admin\Mappings; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | exit; |
| 7 | } |
| 8 | |
| 9 | final class ClaimResult { |
| 10 | |
| 11 | public const STATUS_CREATED = 'created'; |
| 12 | public const STATUS_UPDATED = 'updated'; |
| 13 | public const STATUS_NOOP = 'noop'; |
| 14 | public const STATUS_QUEUED_FOR_REVIEW = 'queued_for_review'; |
| 15 | |
| 16 | public function __construct( |
| 17 | public readonly string $status, |
| 18 | public readonly int $row_id, |
| 19 | public readonly ?string $reason = null |
| 20 | ) {} |
| 21 | } |
| 22 |