FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
Edit File: ShiftFilterStatus.php
<?php declare(strict_types=1); namespace Square\Models; /** * Specifies the `status` of `Shift` records to be returned. */ class ShiftFilterStatus { /** * Shifts that have been started and not ended. */ public const OPEN = 'OPEN'; /** * Shifts that have been started and ended. */ public const CLOSED = 'CLOSED'; }
Save
Back