Current path: home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/
?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
/**
* The `line_item_application` describes what order line items this fulfillment applies
* to. It can be `ALL` or `ENTRY_LIST` with a supplied list of fulfillment entries.
*/
class FulfillmentFulfillmentLineItemApplication
{
/**
* If `ALL`, `entries` must be unset.
*/
public const ALL = 'ALL';
/**
* If `ENTRY_LIST`, supply a list of `entries`.
*/
public const ENTRY_LIST = 'ENTRY_LIST';
}