|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/www/kite.mata-lashes.com/vendor/xendit/xendit-php/src/ |
Upload File : |
<?php
/**
* Cards.php
* php version 7.2.0
*
* @category Class
* @package Xendit
* @author Ellen <ellen@xendit.co>
* @license https://opensource.org/licenses/MIT MIT License
* @link https://api.xendit.co
*/
namespace Xendit;
/**
* Class Cards
*
* @category Class
* @package Xendit
* @author Ellen <ellen@xendit.co>
* @license https://opensource.org/licenses/MIT MIT License
* @link https://api.xendit.co
*/
class Cards
{
use ApiOperations\Request;
use ApiOperations\Retrieve;
use ApiOperations\Create;
/**
* Instantiate base URL
*
* @return string
*/
public static function classUrl()
{
return "/credit_card_charges";
}
/**
* Capture charge, see https://xendit.github.io/apireference/?bash#capture-charge
* for more details
*
* @param string $id charge ID
* @param array $params user parameters
*
* @return array [
* 'created' => string,
* 'status' => string,
* 'business_id' => string,
* 'authorized_amount' => int,
* 'external_id' => string,
* 'merchant_id' => string,
* 'merchant_reference_code' => string,
* 'card_type' => string,
* 'masked_card_number' => string,
* 'charge_type' => string,
* 'card_brand' => string,
* 'bank_reconciliation_id' => string,
* 'capture_amount' => int,
* 'descriptor' => string,
* 'id' => string
* ]
* @throws Exceptions\ApiException
*/
public static function capture($id, $params = [])
{
$url = self::classUrl() . '/' . $id . '/capture';
$requiredParams = ['amount'];
self::validateParams($params, $requiredParams);
return static::_request('POST', $url, $params);
}
/**
* Instantiate required params for Create
*
* @return array
*/
public static function createReqParams()
{
return ['token_id', 'external_id', 'amount'];
}
/**
* Reverse authorized charge
*
* @param string $id charge ID
* @param array $params user params
*
* @return array [
* 'created' => string,
* 'credit_card_charge_id' => string,
* 'external_id' => string,
* 'business_id' => string,
* 'amount' => int,
* 'status' => string,
* 'id' => string
* ]
* @throws Exceptions\ApiException
*/
public static function reverseAuthorization($id, $params = [])
{
$url = self::classUrl() . '/' . $id . '/auth_reversal';
$requiredParams = ['external_id'];
self::validateParams($params, $requiredParams);
return static::_request('POST', $url, $params);
}
/**
* Create refund, see https://xendit.github.io/apireference/?bash#capture-charge
* for more details
*
* @param string $id charge ID
* @param array $params user parameters
*
* @return array [
* 'updated' => string,
* 'created' => string,
* 'credit_card_charge_id' => string,
* 'user_id' => string,
* 'amount' => int,
* 'external_id' => string,
* 'status' => 'SUCCEEDED' || 'FAILED',
* 'fee_refund_amount' => int,
* 'id' => string
* ]
* @throws Exceptions\ApiException
*/
public static function createRefund($id, $params = [])
{
$url = self::classUrl() . '/' . $id . '/refunds';
$requiredParams = ['amount', 'external_id'];
self::validateParams($params, $requiredParams);
return static::_request('POST', $url, $params);
}
}