Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: CardPrepaidType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates a card's prepaid type, such as `NOT_PREPAID` or `PREPAID`. */ class CardPrepaidType { public const UNKNOWN_PREPAID_TYPE = 'UNKNOWN_PREPAID_TYPE'; public const NOT_PREPAID = 'NOT_PREPAID'; public const PREPAID = 'PREPAID'; }
Save
Cancel