/**
  * Return the Invoice VAT amount
  *
  * @param  integer $no
  * @return float
  */
 public function vat($no)
 {
     $handle = $this->getHandle($no);
     return $this->client->Invoice_GetVatAmount(['invoiceHandle' => $handle])->Invoice_GetVatAmountResult;
 }