Sid Gifari File Manager
🏠Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: BusinessAppointmentSettingsCancellationPolicy.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The category of the seller’s cancellation policy. */ class BusinessAppointmentSettingsCancellationPolicy { /** * Cancellations are treated as no shows and may incur a fee as specified by `cancellation_fee_money`. */ public const CANCELLATION_TREATED_AS_NO_SHOW = 'CANCELLATION_TREATED_AS_NO_SHOW'; /** * Cancellations follow the seller-specified policy that is described in free-form text and not * enforced automatically by Square. */ public const CUSTOM_POLICY = 'CUSTOM_POLICY'; }
Save
Cancel