?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src

?? Viewing: BusinessAppointmentSettingsAlignmentTime.php

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


??

??