for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Content\Models;
use Yandex\Common\Model;
class ResponseModelInfoGet extends Model
{
protected $time = null;
protected $model = null;
protected $mappingClasses = [
'model' => 'Yandex\Market\Content\Models\ModelInfo'
];
/**
* Retrieve the model property
*
* @return ModelInfo|null
*/
public function getModel()
return $this->model;
}
* Retrieve the time property
* @return int|null
public function getTime()
return $this->time;