/**
  * Set Quotation Line quantity
  *
  * @param  mixed $quotationLineHandle
  * @param  integer $qty
  * @return boolean
  */
 public function qty($quotationLineHandle, $qty)
 {
     $this->client->QuotationLine_SetQuantity(['quotationLineHandle' => $quotationLineHandle, 'value' => $qty]);
     return true;
 }