for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Webmaster\Models;
use Yandex\Common\Model;
/**
* Class Verification
*
* @package Yandex\Webmaster\Models
*/
class Verification extends Model
{
* @var string $state
protected $state = null;
* @var string $details
protected $details = null;
* @var string $type
protected $type = null;
* @var string $possibleToCancel
protected $possibleToCancel = null;
* @var string $date
protected $date = null;
* {@inheritdoc}
protected $mappingClasses = [];
protected $propNameMap = [
'state' => 'state',
'details' => 'details',
];
* Verification constructor.
* @param \SimpleXMLIterator $data
public function __construct(\SimpleXMLIterator $data)
$this->fromXml($data);
}
* @return string|null
public function getState()
return $this->state;
* @param string $state
protected function setState($state)
$this->state = $state;
public function getDetails()
return $this->details;
* @param string $details
protected function setDetails($details)
$this->details = $details;
* @return string
public function getType()
return $this->type;
* @param string $type
protected function setType($type)
$this->type = $type;
public function getPossibleToCancel()
return $this->possibleToCancel;
* @param string $possibleToCancel
protected function setPossibleToCancel($possibleToCancel)
$this->possibleToCancel = $possibleToCancel;
public function getDate()
return $this->date;
* @param string $date
protected function setDate($date)
$this->date = $date;