%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
/**
* Indicates the method used to enter the card's details.
*/
class TenderCardDetailsEntryMethod
{
/**
* The card was swiped through a Square reader or Square stand.
*/
public const SWIPED = 'SWIPED';
/**
* The card information was keyed manually into Square Point of Sale or a
* Square-hosted web form.
*/
public const KEYED = 'KEYED';
/**
* The card was processed via EMV with a Square reader.
*/
public const EMV = 'EMV';
/**
* The buyer's card details were already on file with Square.
*/
public const ON_FILE = 'ON_FILE';
/**
* The card was processed via a contactless (i.e., NFC) transaction
* with a Square reader.
*/
public const CONTACTLESS = 'CONTACTLESS';
}