PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Endpoints
<?php namespace Mollie\Api\Endpoints; use Mollie\Api\Resources\BaseCollection; use Mollie\Api\Resources\Payment; use Mollie\Api\Resources\PaymentCollection; class SettlementPaymentEndpoint extends CollectionEndpointAbstract { protected $resourcePath = "settlements_payments"; /** * @inheritDoc */ protected function getResourceObject() { return new Payment($this->client); } /** * @inheritDoc */ protected function getResourceCollectionObject($count, $_links) { return new PaymentCollection($this->client, $count, $_links); } /** * Retrieves a collection of Payments from Mollie. * * @param $settlementId * @param string $from The first payment ID you want to include in your list. * @param int $limit * @param array $parameters * * @return BaseCollection|PaymentCollection * @throws \Mollie\Api\Exceptions\ApiException */ public function pageForId($settlementId, $from = null, $limit = null, array $parameters = []) { $this->parentId = $settlementId; return $this->rest_list($from, $limit, $parameters); } }
[-] OnboardingEndpoint.php
[edit]
[-] SettlementsEndpoint.php
[edit]
[-] MethodEndpoint.php
[edit]
[-] ProfileEndpoint.php
[edit]
[-] OrderRefundEndpoint.php
[edit]
[+]
..
[-] ShipmentEndpoint.php
[edit]
[-] CollectionEndpointAbstract.php
[edit]
[-] SubscriptionEndpoint.php
[edit]
[-] ProfileMethodEndpoint.php
[edit]
[-] OrderPaymentEndpoint.php
[edit]
[-] MandateEndpoint.php
[edit]
[-] EndpointAbstract.php
[edit]
[-] PaymentLinkEndpoint.php
[edit]
[-] WalletEndpoint.php
[edit]
[-] PaymentEndpoint.php
[edit]
[-] PaymentCaptureEndpoint.php
[edit]
[-] RefundEndpoint.php
[edit]
[-] CustomerEndpoint.php
[edit]
[-] InvoiceEndpoint.php
[edit]
[-] PermissionEndpoint.php
[edit]
[-] OrderEndpoint.php
[edit]
[-] ChargebackEndpoint.php
[edit]
[-] OrganizationEndpoint.php
[edit]
[-] CustomerPaymentsEndpoint.php
[edit]
[-] PaymentRefundEndpoint.php
[edit]
[-] OrderLineEndpoint.php
[edit]
[-] PaymentChargebackEndpoint.php
[edit]
[-] SettlementPaymentEndpoint.php
[edit]