Ydb.Table.CopyTableRequest */ class CopyTableRequest extends \Google\Protobuf\Internal\Message { /** * Session identifier * * Generated from protobuf field string session_id = 1; */ protected $session_id = ''; /** * Copy from path * * Generated from protobuf field string source_path = 2; */ protected $source_path = ''; /** * Copy to path * * Generated from protobuf field string destination_path = 3; */ protected $destination_path = ''; /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 4; */ protected $operation_params = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $session_id * Session identifier * @type string $source_path * Copy from path * @type string $destination_path * Copy to path * @type \Ydb\Operations\OperationParams $operation_params * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Session identifier * * Generated from protobuf field string session_id = 1; * @return string */ public function getSessionId() { return $this->session_id; } /** * Session identifier * * Generated from protobuf field string session_id = 1; * @param string $var * @return $this */ public function setSessionId($var) { GPBUtil::checkString($var, True); $this->session_id = $var; return $this; } /** * Copy from path * * Generated from protobuf field string source_path = 2; * @return string */ public function getSourcePath() { return $this->source_path; } /** * Copy from path * * Generated from protobuf field string source_path = 2; * @param string $var * @return $this */ public function setSourcePath($var) { GPBUtil::checkString($var, True); $this->source_path = $var; return $this; } /** * Copy to path * * Generated from protobuf field string destination_path = 3; * @return string */ public function getDestinationPath() { return $this->destination_path; } /** * Copy to path * * Generated from protobuf field string destination_path = 3; * @param string $var * @return $this */ public function setDestinationPath($var) { GPBUtil::checkString($var, True); $this->destination_path = $var; return $this; } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 4; * @return \Ydb\Operations\OperationParams|null */ public function getOperationParams() { return $this->operation_params; } public function hasOperationParams() { return isset($this->operation_params); } public function clearOperationParams() { unset($this->operation_params); } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 4; * @param \Ydb\Operations\OperationParams $var * @return $this */ public function setOperationParams($var) { GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class); $this->operation_params = $var; return $this; } }