����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.16.10.2 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/vendor/mollie/mollie-api-php/src/Resources/ |
Upload File : |
<?php namespace Mollie\Api\Resources; use Mollie\Api\Types\TerminalStatus; class Terminal extends BaseResource { /** * @var string */ public $resource; /** * Id of the terminal (on the Mollie platform). * * @example term_7MgL4wea46qkRcoTZjWEH * @var string */ public $id; /** * The profile ID this terminal belongs to. * * @example pfl_QkEhN94Ba * @var string */ public $profileId; /** * Mollie determines the read-only status of a terminal as pending, * active, or inactive based on its actions. Pending means not activated, * active means payments are accepted, and inactive means it is deactivated. * * @example active * @var string */ public $status; /** * The brand of the terminal. * * @var string */ public $brand; /** * The model of the terminal. * * @var string */ public $model; /** * The serial number of the terminal. The serial number is provided at terminal creation time. * * @var string */ public $serialNumber; /** * The currency which is set for the terminal, in ISO 4217 format. * * @example EUR * @var string */ public $currency; /** * A short description of the terminal. The description will be visible * in the Dashboard, but also on the device itself for identification purposes. * * @var string */ public $description; /** * The timezone of the terminal. * * @example Europe/Brussels * @var string */ public $timezone; /** * This will be a full locale provided by the user. * * @example nl_NL * @var string */ public $locale; /** * UTC datetime the terminal was created, in ISO 8601 format. * * @example "2021-12-25T10:30:54+00:00" * @var string */ public $createdAt; /** * UTC datetime the terminal was last updated, in ISO 8601 format. * * @example "2021-12-25T10:30:54+00:00" * @var string */ public $updatedAt; /** * UTC datetime the terminal was disabled, in ISO 8601 format. * This parameter is omitted if the terminal is not disabled yet. * * @example "2021-12-25T10:30:54+00:00" * @var string */ public $disabledAt; /** * UTC datetime the terminal was activated, in ISO 8601 format. * This parameter is omitted if the terminal is not active yet. * * @example "2021-12-25T10:30:54+00:00" * @var string */ public $activatedAt; /** * Links to help navigate through the Mollie API and related resources. * * @var \stdClass */ public $_links; /** * @return bool */ public function isPending() { return $this->status === TerminalStatus::STATUS_PENDING; } /** * @return bool */ public function isActive() { return $this->status === TerminalStatus::STATUS_ACTIVE; } /** * @return bool */ public function isInactive() { return $this->status === TerminalStatus::STATUS_INACTIVE; } }