���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/zhaagvlk/web.zhaap.com/vendor__1b5d5ff/xendit/xendit-php/src/PayLater.php
���ѧ٧ѧ�
<?php /** * PayLater.php * php version 7.2.0 * * @category Class * @package Xendit * @author Asoka Wotulo <asokawotulo2@gmail.com> * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ namespace Xendit; use Xendit\Exceptions\InvalidArgumentException; use Xendit\Exceptions\ApiException; /** * Class PayLater * * @category Class * @package Xendit * @author Asoka Wotulo <asokawotulo2@gmail.com> * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ class PayLater { use ApiOperations\Request; /** * Instantiate relative URL * * @return string */ public static function classUrl() { return "/paylater"; } /** * Retrieve list of PayLater plans * * @param array $params * @return array * @throws InvalidArgumentException * @throws ApiException */ public static function initiatePayLaterPlans($params = []) { $requiredParams = [ 'customer_id', 'channel_code', 'currency', 'amount', 'order_items', ]; self::validateParams($params, $requiredParams); $url = static::classUrl() . '/plans'; return static::_request('POST', $url, $params); } /** * Create PayLater transaction / generate checkout URL * * @param array $params * @return array * @throws InvalidArgumentException * @throws ApiException */ public static function createPayLaterCharge($params = []) { $requiredParams = [ 'plan_id', 'reference_id', 'checkout_method', 'success_redirect_url', ]; self::validateParams($params, $requiredParams); $url = static::classUrl() . '/charges'; return static::_request('POST', $url, $params); } /** * Get PayLater Charge by ID * * @param string $id * @param array $params * @return array * @throws InvalidArgumentException * @throws ApiException */ public static function getPayLaterChargeStatus($id, $params = []) { $requiredParams = [ ]; self::validateParams($params, $requiredParams); $url = static::classUrl() . '/charges/'.$id; return static::_request('GET', $url, $params); } /** * Create Paylater Refund * * @param string $id * @param array $params * @return array * @throws InvalidArgumentException * @throws ApiException */ public static function createPayLaterRefund($id, $params = []) { $requiredParams = [ ]; self::validateParams($params, $requiredParams); $url = static::classUrl() . '/charges/'.$id.'/refunds'; return static::_request('POST', $url, $params); } /** * Get Refund by Refund ID * * @param string $charge_id * @param string $refund_id * @param array $params * @return array * @throws InvalidArgumentException * @throws ApiException */ public static function getPayLaterRefund($charge_id, $refund_id, $params = []) { $requiredParams = [ ]; self::validateParams($params, $requiredParams); $url = static::classUrl() . '/charges/'.$charge_id.'/refunds/'.$refund_id; return static::_request('GET', $url, $params); } /** * List Paylater Refunds * * @param array $params Paylater Refunds params * * @return array * https://developers.xendit.co/api-reference/#list-paylater-refunds * @throws Exceptions\ApiException */ public static function listPayLaterRefund($charge_id, $params = []) { $url = static::classUrl() . '/charges/'.$charge_id.'/refunds/'; return static::_request('GET', $url, $params); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�