Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
RefundStatus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates a refund's current status. */ class RefundStatus { /** * The refund is pending. */ public const PENDING = 'PENDING'; /** * The refund has been approved by Square. */ public const APPROVED = 'APPROVED'; /** * The refund has been rejected by Square. */ public const REJECTED = 'REJECTED'; /** * The refund failed. */ public const FAILED = 'FAILED'; }