Current Path : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/ |
Current File : /var/test/www/storage2/vendor/divido/divido-php/lib/Divido/SendApplication.php |
<?php class Divido_SendApplication extends Divido_ApiResource { /** * @param string $id The ID of the charge to retrieve. * @param string|null $apiKey * * @return Divido_SendApplication */ public static function retrieve($id, $apiKey=null) { $class = get_class(); return self::_scopedRetrieve($class, $id, $apiKey); } /** * @param array|null $params * @param string|null $apiKey * * @return array An array of Divido_SendApplication */ public static function all($params=null, $apiKey=null) { $class = get_class(); return self::_scopedAll($class, $params, $apiKey); } /** * @param array|null $params * @param string|null $apiKey * * @return Divido_SendApplication */ public static function send($params=null, $merchant=null) { $class = get_class(); return self::_scopedSendApplicationRequest($class, $params, $merchant); } /** * @return Divido_SendApplication The saved charge. */ public function save() { $class = get_class(); return self::_scopedSave($class); } }