Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: SubscriptionEventSubscriptionEventType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Supported types of an event occurred to a subscription. */ class SubscriptionEventSubscriptionEventType { /** * The subscription was started. */ public const START_SUBSCRIPTION = 'START_SUBSCRIPTION'; /** * The subscription plan was changed. */ public const PLAN_CHANGE = 'PLAN_CHANGE'; /** * The subscription was stopped. */ public const STOP_SUBSCRIPTION = 'STOP_SUBSCRIPTION'; /** * The subscription was deactivated */ public const DEACTIVATE_SUBSCRIPTION = 'DEACTIVATE_SUBSCRIPTION'; /** * The subscription was resumed. */ public const RESUME_SUBSCRIPTION = 'RESUME_SUBSCRIPTION'; /** * The subscription was paused. */ public const PAUSE_SUBSCRIPTION = 'PAUSE_SUBSCRIPTION'; /** * The billing anchor date was changed. */ public const BILLING_ANCHOR_DATE_CHANGED = 'BILLING_ANCHOR_DATE_CHANGED'; }
Save
Cancel