Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: FulfillmentFulfillmentLineItemApplication.php
<?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'; }
Save
Cancel