Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\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'; }