PHP Classes

File: src/Enums/BillingStatementStatus.php

Recommend this page to a friend!
  Packages of Daryl Legion   PayRex Laravel   src/Enums/BillingStatementStatus.php   Download  
File: src/Enums/BillingStatementStatus.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: 284 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
LegionHQ\LaravelPayrex\Enums;

enum BillingStatementStatus: string
{
    case
Draft = 'draft';
    case
Open = 'open';
    case
Paid = 'paid';
    case
Void = 'void';
    case
Uncollectible = 'uncollectible';
    case
Overdue = 'overdue';
}