71 lines
1.9 KiB
PHP
Executable File
71 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
class Stripe_Charge extends Stripe_ApiResource
|
|
{
|
|
public static function constructFrom($values, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::scopedConstructFrom($class, $values, $apiKey);
|
|
}
|
|
|
|
public static function retrieve($id, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedRetrieve($class, $id, $apiKey);
|
|
}
|
|
|
|
public static function all($params=null, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedAll($class, $params, $apiKey);
|
|
}
|
|
|
|
public static function create($params=null, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedCreate($class, $params, $apiKey);
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedSave($class);
|
|
}
|
|
|
|
public function refund($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/refund';
|
|
list($response, $apiKey) = $requestor->request('post', $url, $params);
|
|
$this->refreshFrom($response, $apiKey);
|
|
return $this;
|
|
}
|
|
|
|
public function capture($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/capture';
|
|
list($response, $apiKey) = $requestor->request('post', $url, $params);
|
|
$this->refreshFrom($response, $apiKey);
|
|
return $this;
|
|
}
|
|
|
|
public function updateDispute($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/dispute';
|
|
list($response, $apiKey) = $requestor->request('post', $url, $params);
|
|
$this->refreshFrom(array('dispute' => $response), $apiKey, true);
|
|
return $this->dispute;
|
|
}
|
|
|
|
public function closeDispute()
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/dispute/close';
|
|
list($response, $apiKey) = $requestor->request('post', $url);
|
|
$this->refreshFrom($response, $apiKey);
|
|
return $this;
|
|
}
|
|
}
|