/**
  * @Given license model filter is specified
  */
 public function licenseModelFilterIsSpecified()
 {
     $this->deferredSearch = $this->deferredSearch->withLicenseModel(LicenseModelFilter::RoyaltyFree());
 }
 /**
  * @param $licenseModel
  * @throws Exception
  * @return $this
  */
 public function withLicenseModel(LicenseModelFilter $licenseModel)
 {
     $this->appendArrayValueToRequestDetails("license_models", $licenseModel->getValue());
     return $this;
 }