PHP Classes

File: src/Enums/PaymentIntentStatus.php

Recommend this page to a friend!
  Packages of Daryl Legion   PayRex Laravel   src/Enums/PaymentIntentStatus.php   Download  
File: src/Enums/PaymentIntentStatus.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PayRex Laravel
Request payments using the PayRex service
Author: By
Last change:
Date: 13 days ago
Size: 374 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
LegionHQ\LaravelPayrex\Enums;

enum PaymentIntentStatus: string
{
    case
AwaitingPaymentMethod = 'awaiting_payment_method';
    case
AwaitingNextAction = 'awaiting_next_action';
    case
AwaitingCapture = 'awaiting_capture';
    case
Processing = 'processing';
    case
Succeeded = 'succeeded';
    case
Canceled = 'canceled';
}