Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Time units of a service duration for bookings. */ class BusinessAppointmentSettingsAlignmentTime { /** * The service duration unit is one visit of a fixed time interval specified by the seller. */ public const SERVICE_DURATION = 'SERVICE_DURATION'; /** * The service duration unit is a 15-minute interval. Bookings can be scheduled every quarter hour. */ public const QUARTER_HOURLY = 'QUARTER_HOURLY'; /** * The service duration unit is a 30-minute interval. Bookings can be scheduled every half hour. */ public const HALF_HOURLY = 'HALF_HOURLY'; /** * The service duration unit is a 60-minute interval. Bookings can be scheduled every hour. */ public const HOURLY = 'HOURLY'; }