FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
Edit File: OrderLineItemItemType.php
<?php declare(strict_types=1); namespace 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
Back