Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
ShiftSortField.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Enumerates the `Shift` fields to sort on. */ class ShiftSortField { /** * The start date/time of a `Shift` */ public const START_AT = 'START_AT'; /** * The end date/time of a `Shift` */ public const END_AT = 'END_AT'; /** * The date/time that a `Shift` is created */ public const CREATED_AT = 'CREATED_AT'; /** * The most recent date/time that a `Shift` is updated */ public const UPDATED_AT = 'UPDATED_AT'; }