File "PayoutStatus.php"

Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/PayoutStatus.php
File size: 494 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

/**
 * Payout status types
 */
class PayoutStatus
{
    /**
     * Indicates that the payout was successfully sent to the banking destination.
     */
    public const SENT = 'SENT';
    /**
     * Indicates that the payout was rejected by the banking destination.
     */
    public const FAILED = 'FAILED';
    /**
     * Indicates that the payout has successfully completed.
     */
    public const PAID = 'PAID';
}