PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Endpoints
<?php namespace Mollie\Api\Endpoints; use Mollie\Api\Resources\BaseResource; class WalletEndpoint extends EndpointAbstract { /** * Get the object that is used by this API endpoint. Every API endpoint uses one type of object. * * @return BaseResource */ protected function getResourceObject() { // Not used } /** * Obtain a new ApplePay payment session. * * @param $domain * @param $validationUrl * @param array $parameters * @return false|string|void * @throws \Mollie\Api\Exceptions\ApiException */ public function requestApplePayPaymentSession($domain, $validationUrl, $parameters = []) { $body = $this->parseRequestBody(array_merge([ 'domain' => $domain, 'validationUrl' => $validationUrl, ], $parameters)); $response = $this->client->performHttpCall( self::REST_CREATE, 'wallets/applepay/sessions', $body ); return json_encode($response); } }
[-] 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]