« Back to History
OrderLineItemItemType.php
|
20260722_120325.php
Initial Domain Snapshot
Copy Code
<?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'; }