File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/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';
}