Ydb.Table.OnlineModeSettings */ class OnlineModeSettings extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool allow_inconsistent_reads = 1; */ protected $allow_inconsistent_reads = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $allow_inconsistent_reads * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool allow_inconsistent_reads = 1; * @return bool */ public function getAllowInconsistentReads() { return $this->allow_inconsistent_reads; } /** * Generated from protobuf field bool allow_inconsistent_reads = 1; * @param bool $var * @return $this */ public function setAllowInconsistentReads($var) { GPBUtil::checkBool($var); $this->allow_inconsistent_reads = $var; return $this; } }