/**
  * Get Invoice due date by number
  *
  * @param  integer $no
  * @return string
  */
 public function due($no)
 {
     $handle = $this->getHandle($no);
     return $this->client->Invoice_GetDueDate(['invoiceHandle' => $handle])->Invoice_GetDueDateResult;
 }