File "SubscriptionStatus.php"

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

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

/**
 * Supported subscription statuses.
 */
class SubscriptionStatus
{
    /**
     * The subscription is pending to start in the future.
     */
    public const PENDING = 'PENDING';
    /**
     * The subscription is active.
     */
    public const ACTIVE = 'ACTIVE';
    /**
     * The subscription is canceled.
     */
    public const CANCELED = 'CANCELED';
    /**
     * The subscription is deactivated.
     */
    public const DEACTIVATED = 'DEACTIVATED';
    /**
     * The subscription is paused.
     */
    public const PAUSED = 'PAUSED';
}