Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: GiftCardGANSource.php
<?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'; }
Save
Cancel