_post('tax_rates', $parameters); } /** * Retrieves an existing tax rate. * * @param string $taxRateId * @param array $parameters * @return array */ public function find($taxRateId) { return $this->_get("tax_rates/{$taxRateId}"); } /** * Updates an existing tax rate. * * @param string $taxRateId * @return array */ public function update($taxRateId, array $parameters = []) { return $this->_post("tax_rates/{$taxRateId}", $parameters); } /** * Lists all tax rates. * * @param array $parameters * @return array */ public function all(array $parameters = []) { return $this->_get('tax_rates', $parameters); } }