File "ShiftSortField.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/ShiftSortField.php
File size: 564 bytes
MIME-type: text/x-php
Charset: utf-8

<?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';
}