/
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/Balance.php
(3061B)
<?php namespace Mollie\Api\Resources; class Balance extends BaseResource { /** * Indicates this is a balance resource. The value will always be "balance" here. * * @var string */ public $resource; /** * The mode used to create this balance. Mode determines whether real or test payments can be moved to this balance. * The value is either "live" or "test". * * @var string */ public $mode; /** * The identifier uniquely referring this balance. Mollie assigns this identifier at balance creation. * * @example bal_gVMhHKqSSRYJyPsuoPABC * @var string */ public $id; /** * UTC datetime the balance was created in ISO-8601 format. * * @example "2021-12-25T10:30:54+00:00" * @var string */ public $createdAt; /** * The balance's ISO 4217 currency code. * * @var string */ public $currency; /** * The status of the balance: "active" if the balance is operational and ready to be used. * The status is "inactive" if the account is still being validated by Mollie or if the balance has been blocked. * * @var string */ public $status; /** * The total amount directly available on the balance. * * @var \stdClass */ public $availableAmount; /** * The total amount queued to be transferred to your balance. * For example, a credit card payment can take a few days to clear. * * @var \stdClass */ public $incomingAmount; /** * The total amount that is in the process of being transferred from your balance to your verified bank account. * @var \stdClass */ public $outgoingAmount; /** * The frequency at which the available amount on the balance will be transferred away to the configured transfer * destination. See "transferDestination". Note that if the transfer is for an external destination, and the * transfer is created in a weekend or during a bank holiday, the actual bank transfer will take place on the next * business day. * * @var string */ public $transferFrequency; /** * The minimum amount configured for scheduled automatic balance transfers. As soon as the amount on the balance * exceeds this threshold, the complete balance will be paid out to the "transferDestination" according to the * configured "transferFrequency". * * @var \stdClass */ public $transferThreshold; /** * The reference to be included on all transfers for this balance. * * @var string|null */ public $transferReference; /** * The destination where the available amount will be automatically transferred to according to the configured * "transferFrequency". * * @var \stdClass */ public $transferDestination; /** * Links to help navigate through the Mollie API and related resources. * * @var \stdClass */ public $_links; }
Save