Ydb.Table.RenameTableItem */ class RenameTableItem extends \Google\Protobuf\Internal\Message { /** * Full path * * Generated from protobuf field string source_path = 1; */ protected $source_path = ''; /** * Full path * * Generated from protobuf field string destination_path = 2; */ protected $destination_path = ''; /** * Move options * * Generated from protobuf field bool replace_destination = 3; */ protected $replace_destination = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $source_path * Full path * @type string $destination_path * Full path * @type bool $replace_destination * Move options * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Full path * * Generated from protobuf field string source_path = 1; * @return string */ public function getSourcePath() { return $this->source_path; } /** * Full path * * Generated from protobuf field string source_path = 1; * @param string $var * @return $this */ public function setSourcePath($var) { GPBUtil::checkString($var, True); $this->source_path = $var; return $this; } /** * Full path * * Generated from protobuf field string destination_path = 2; * @return string */ public function getDestinationPath() { return $this->destination_path; } /** * Full path * * Generated from protobuf field string destination_path = 2; * @param string $var * @return $this */ public function setDestinationPath($var) { GPBUtil::checkString($var, True); $this->destination_path = $var; return $this; } /** * Move options * * Generated from protobuf field bool replace_destination = 3; * @return bool */ public function getReplaceDestination() { return $this->replace_destination; } /** * Move options * * Generated from protobuf field bool replace_destination = 3; * @param bool $var * @return $this */ public function setReplaceDestination($var) { GPBUtil::checkBool($var); $this->replace_destination = $var; return $this; } }