is less than or equal to the current time (in epoch * time format), and has passed since that moment; * i.e. the expiration threshold is the value of plus . * * Generated from protobuf message Ydb.Table.DateTypeColumnModeSettings */ class DateTypeColumnModeSettings extends \Google\Protobuf\Internal\Message { /** * The column type must be a date type * * Generated from protobuf field string column_name = 1; */ protected $column_name = ''; /** * Generated from protobuf field uint32 expire_after_seconds = 2; */ protected $expire_after_seconds = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $column_name * The column type must be a date type * @type int $expire_after_seconds * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * The column type must be a date type * * Generated from protobuf field string column_name = 1; * @return string */ public function getColumnName() { return $this->column_name; } /** * The column type must be a date type * * Generated from protobuf field string column_name = 1; * @param string $var * @return $this */ public function setColumnName($var) { GPBUtil::checkString($var, True); $this->column_name = $var; return $this; } /** * Generated from protobuf field uint32 expire_after_seconds = 2; * @return int */ public function getExpireAfterSeconds() { return $this->expire_after_seconds; } /** * Generated from protobuf field uint32 expire_after_seconds = 2; * @param int $var * @return $this */ public function setExpireAfterSeconds($var) { GPBUtil::checkUint32($var); $this->expire_after_seconds = $var; return $this; } }