_post("application_fees/{$applicationFeeId}/refunds", $parameters); } /** * Retrieves an existing application fee refund. * * @param string $applicationFeeId * @param string $refundId * @return array */ public function find($applicationFeeId, $refundId) { return $this->_get("application_fees/{$applicationFeeId}/refunds/{$refundId}"); } /** * Updates an existing application fee refund. * * @param string $applicationFeeId * @param string $refundId * @param array $parameters * @return array */ public function update($applicationFeeId, $refundId, array $parameters = []) { return $this->_post("application_fees/{$applicationFeeId}/refunds/{$refundId}", $parameters); } /** * Lists all application fee refunds. * * @param string $applicationFeeId * @param array $parameters * @return array */ public function all($applicationFeeId, array $parameters = []) { return $this->_get("application_fees/{$applicationFeeId}/refunds", $parameters); } }