registration.core.ShowExpirationDialog
*/
class ShowExpirationDialog extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 days = 1;
*/
protected $days = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $days
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Registration::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int32 days = 1;
* @return int
*/
public function getDays()
{
return $this->days;
}
/**
* Generated from protobuf field int32 days = 1;
* @param int $var
* @return $this
*/
public function setDays($var)
{
GPBUtil::checkInt32($var);
$this->days = $var;
return $this;
}
}