?? 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: ActionCancelReason.php

<?php

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

class ActionCancelReason
{
    /**
     * A person canceled the `TerminalCheckout` from a Square device.
     */
    public const BUYER_CANCELED = 'BUYER_CANCELED';
    /**
     * A client canceled the `TerminalCheckout` using the API.
     */
    public const SELLER_CANCELED = 'SELLER_CANCELED';
    /**
     * The `TerminalCheckout` timed out (see `deadline_duration` on the `TerminalCheckout`).
     */
    public const TIMED_OUT = 'TIMED_OUT';
}


??

??