/**
  * Return Mailjet\Model\Bouncestatistics with id = $id
  *
  * @param int Id of resource to get
  * @return Mailjet\Model\Bouncestatistics
  */
 public function get($id)
 {
     if (empty($id)) {
         throw new Exception\InvalidArgumentException("You must specify the ID");
     }
     return parent::_get($id);
 }
 /**
  * Return current Mailjet\Model\Apikeytotals
  *
  * @return Mailjet\Model\Apikeytotals
  */
 public function current()
 {
     return parent::_get();
 }