/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Resources
/
/home/techb158/ileadtechnology.com/vendor/mollie/mollie-api-php/src/Resources
mkdir
upload
Name
Size
Mode
Actions
Balance.php
3061
0644
edit
dl
rm
BalanceCollection.php
364
0644
edit
dl
rm
BalanceReport.php
2416
0644
edit
dl
rm
BalanceTransaction.php
2438
0644
edit
dl
rm
BalanceTransactionCollection.php
412
0644
edit
dl
rm
BaseCollection.php
596
0644
edit
dl
rm
BaseResource.php
491
0644
edit
dl
rm
Capture.php
1183
0644
edit
dl
rm
CaptureCollection.php
364
0644
edit
dl
rm
Chargeback.php
1372
0644
edit
dl
rm
ChargebackCollection.php
373
0644
edit
dl
rm
Client.php
608
0644
edit
dl
rm
ClientCollection.php
361
0644
edit
dl
rm
ClientLink.php
1273
0644
edit
dl
rm
CurrentProfile.php
809
0644
edit
dl
rm
CursorCollection.php
2473
0644
edit
dl
rm
Customer.php
5669
0644
edit
dl
rm
CustomerCollection.php
367
0644
edit
dl
rm
Invoice.php
1843
0644
edit
dl
rm
InvoiceCollection.php
364
0644
edit
dl
rm
Issuer.php
514
0644
edit
dl
rm
IssuerCollection.php
214
0644
edit
dl
rm
Mandate.php
1851
0644
edit
dl
rm
MandateCollection.php
800
0644
edit
dl
rm
Method.php
2212
0644
edit
dl
rm
MethodCollection.php
214
0644
edit
dl
rm
MethodPrice.php
734
0644
edit
dl
rm
MethodPriceCollection.php
219
0644
edit
dl
rm
Onboarding.php
1062
0644
edit
dl
rm
Order.php
13064
0644
edit
dl
rm
OrderCollection.php
358
0644
edit
dl
rm
OrderLine.php
8559
0644
edit
dl
rm
OrderLineCollection.php
587
0644
edit
dl
rm
Organization.php
1287
0644
edit
dl
rm
OrganizationCollection.php
379
0644
edit
dl
rm
Partner.php
1262
0644
edit
dl
rm
Payment.php
19145
0644
edit
dl
rm
PaymentCollection.php
364
0644
edit
dl
rm
PaymentLink.php
2521
0644
edit
dl
rm
PaymentLinkCollection.php
377
0644
edit
dl
rm
Permission.php
338
0644
edit
dl
rm
PermissionCollection.php
222
0644
edit
dl
rm
Profile.php
5535
0644
edit
dl
rm
ProfileCollection.php
364
0644
edit
dl
rm
Refund.php
3207
0644
edit
dl
rm
RefundCollection.php
361
0644
edit
dl
rm
ResourceFactory.php
2068
0644
edit
dl
rm
Route.php
631
0644
edit
dl
rm
RouteCollection.php
357
0644
edit
dl
rm
Settlement.php
4075
0644
edit
dl
rm
SettlementCollection.php
373
0644
edit
dl
rm
Shipment.php
2650
0644
edit
dl
rm
ShipmentCollection.php
218
0644
edit
dl
rm
Subscription.php
4889
0644
edit
dl
rm
SubscriptionCollection.php
379
0644
edit
dl
rm
Terminal.php
3242
0644
edit
dl
rm
TerminalCollection.php
367
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/mollie/mollie-api-php/src/Resources/Terminal.php
(3242B)
<?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; } }
Save
cmd:
run