Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
GiftCardGANSource.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates the source that generated the gift card * account number (GAN). */ class GiftCardGANSource { /** * The GAN is generated by Square. */ public const SQUARE = 'SQUARE'; /** * The GAN is provided by a non-Square system. For more information, see * [Custom GANs](https://developer.squareup.com/docs/gift-cards/using-gift-cards-api#custom-gans) or * [Third-party gift cards](https://developer.squareup.com/docs/gift-cards/using-gift-cards-api#third- * party-gift-cards). */ public const OTHER = 'OTHER'; }