/**
  * @inheritdoc
  */
 public function delete(DeletePhotoOptions $options)
 {
     if (!$options->validate()) {
         throw new InvalidParamException(VarDumper::dumpAsString($options->getErrors()));
     }
     $httpClient = $this->yandexFotki->getApiHttpClient();
     $request = $httpClient->delete("photo/{$options->id}/");
     $response = $request->send();
     return $response->isOk;
 }