?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src

?? Viewing: TenderSquareAccountDetailsStatus.php

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

class TenderSquareAccountDetailsStatus
{
    /**
     * The Square Account payment has been authorized but not yet captured.
     */
    public const AUTHORIZED = 'AUTHORIZED';
    /**
     * The Square Account payment was authorized and subsequently captured (i.e., completed).
     */
    public const CAPTURED = 'CAPTURED';
    /**
     * The Square Account payment was authorized and subsequently voided (i.e., canceled).
     */
    public const VOIDED = 'VOIDED';
    /**
     * The Square Account payment failed.
     */
    public const FAILED = 'FAILED';
}


??

??