/**
  * @param ClientInterface $client
  * @param $conversionType
  */
 public function __construct(ClientInterface $client, $conversionType)
 {
     $this->client = $client;
     $this->conversionType = $conversionType;
     $this->callbackUrl = $client->getCallbackUrl();
     $this->testMode = $client->getTestMode();
 }