_post('bitcoin/receivers', $parameters); } /** * Retrieves the bitcoin receiver with the given ID. * * @param string $receiverId * @return array */ public function find($receiverId) { return $this->_get("bitcoin/receivers/{$receiverId}"); } /** * Lists all bitcoin receivers. * * @param array $parameters * @return array */ public function all(array $parameters = []) { return $this->_get('bitcoin/receivers', $parameters); } }