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

<?php

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

/**
 * The capabilities a location might have.
 */
class LocationCapability
{
    /**
     * The capability to process credit card transactions with Square.
     */
    public const CREDIT_CARD_PROCESSING = 'CREDIT_CARD_PROCESSING';
    /**
     * The capability to receive automatic transfers from Square.
     */
    public const AUTOMATIC_TRANSFERS = 'AUTOMATIC_TRANSFERS';
    /**
     * The capability to process unlinked refunds with Square.
     */
    public const UNLINKED_REFUNDS = 'UNLINKED_REFUNDS';
}


??

??