Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: OrderLineItemItemType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Represents the line item type. */ class OrderLineItemItemType { /** * Indicates that the line item is an itemized sale. */ public const ITEM = 'ITEM'; /** * Indicates that the line item is a non-itemized sale. */ public const CUSTOM_AMOUNT = 'CUSTOM_AMOUNT'; /** * Indicates that the line item is a gift card sale. Gift cards sold through * the Orders API are sold in an unactivated state and can be activated through the * Gift Cards API using the line item `uid`. */ public const GIFT_CARD = 'GIFT_CARD'; }
Save
Cancel