File "BusinessAppointmentSettingsAlignmentTime.php"

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

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