Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: ArchivedState.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Defines the values for the `archived_state` query expression * used in [SearchCatalogItems]($e/Catalog/SearchCatalogItems) * to return the archived, not archived or either type of catalog items. */ class ArchivedState { /** * Requested items are not archived with the `is_archived` attribute set to `false`. */ public const ARCHIVED_STATE_NOT_ARCHIVED = 'ARCHIVED_STATE_NOT_ARCHIVED'; /** * Requested items are archived with the `is_archived` attribute set to `true`. */ public const ARCHIVED_STATE_ARCHIVED = 'ARCHIVED_STATE_ARCHIVED'; /** * Requested items can be archived or not archived. */ public const ARCHIVED_STATE_ALL = 'ARCHIVED_STATE_ALL'; }
Save
Cancel