����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.138.37.16 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/Endpoints/ |
Upload File : |
<?php namespace Mollie\Api\Endpoints; use Mollie\Api\Exceptions\ApiException; use Mollie\Api\Resources\Settlement; use Mollie\Api\Resources\SettlementCollection; class SettlementsEndpoint extends CollectionEndpointAbstract { protected $resourcePath = "settlements"; /** * Get the object that is used by this API. Every API uses one type of object. * * @return \Mollie\Api\Resources\BaseResource */ protected function getResourceObject() { return new Settlement($this->client); } /** * Get the collection object that is used by this API. Every API uses one type of collection object. * * @param int $count * @param \stdClass $_links * * @return \Mollie\Api\Resources\BaseCollection */ protected function getResourceCollectionObject($count, $_links) { return new SettlementCollection($this->client, $count, $_links); } /** * Retrieve a single settlement from Mollie. * * Will throw a ApiException if the settlement id is invalid or the resource cannot be found. * * @param string $settlementId * @param array $parameters * @return Settlement * @throws ApiException */ public function get($settlementId, array $parameters = []) { return parent::rest_read($settlementId, $parameters); } /** * Retrieve the details of the current settlement that has not yet been paid out. * * @return Settlement * @throws ApiException */ public function next() { return parent::rest_read("next", []); } /** * Retrieve the details of the open balance of the organization. * * @return Settlement * @throws ApiException */ public function open() { return parent::rest_read("open", []); } /** * Retrieves a collection of Settlements from Mollie. * * @param string $from The first settlement ID you want to include in your list. * @param int $limit * @param array $parameters * * @return SettlementCollection * @throws ApiException */ public function page($from = null, $limit = null, array $parameters = []) { return $this->rest_list($from, $limit, $parameters); } }