File "DeviceComponentDetailsExternalPower.php"

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

<?php

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

/**
 * An enum for ExternalPower.
 */
class DeviceComponentDetailsExternalPower
{
    /**
     * Plugged in and charging.
     */
    public const AVAILABLE_CHARGING = 'AVAILABLE_CHARGING';
    /**
     * Fully charged.
     */
    public const AVAILABLE_NOT_IN_USE = 'AVAILABLE_NOT_IN_USE';
    /**
     * On battery power.
     */
    public const UNAVAILABLE = 'UNAVAILABLE';
    /**
     * Not providing enough power for the device.
     */
    public const AVAILABLE_INSUFFICIENT = 'AVAILABLE_INSUFFICIENT';
}