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