/**
  * Get the price of a product by currency code
  *
  * @param string $number
  * @param string $code
  * @return string
  */
 public function getPriceByCurrency($number, $code)
 {
     return $this->client->ProductPrice_GetPrice(['productPriceHandle' => ['Id1' => $number, 'Id2' => $code]])->ProductPrice_GetPriceResult;
 }