Ydb.Coordination.SessionRequest.DeleteSemaphore */ class DeleteSemaphore extends \Google\Protobuf\Internal\Message { /** * Client-defined request id, echoed in the response * * Generated from protobuf field uint64 req_id = 1; */ protected $req_id = 0; /** * Name of the semaphore to delete * * Generated from protobuf field string name = 2; */ protected $name = ''; /** * Will delete semaphore even if currently acquired by sessions * * Generated from protobuf field bool force = 3; */ protected $force = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int|string $req_id * Client-defined request id, echoed in the response * @type string $name * Name of the semaphore to delete * @type bool $force * Will delete semaphore even if currently acquired by sessions * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbCoordination::initOnce(); parent::__construct($data); } /** * Client-defined request id, echoed in the response * * Generated from protobuf field uint64 req_id = 1; * @return int|string */ public function getReqId() { return $this->req_id; } /** * Client-defined request id, echoed in the response * * Generated from protobuf field uint64 req_id = 1; * @param int|string $var * @return $this */ public function setReqId($var) { GPBUtil::checkUint64($var); $this->req_id = $var; return $this; } /** * Name of the semaphore to delete * * Generated from protobuf field string name = 2; * @return string */ public function getName() { return $this->name; } /** * Name of the semaphore to delete * * Generated from protobuf field string name = 2; * @param string $var * @return $this */ public function setName($var) { GPBUtil::checkString($var, True); $this->name = $var; return $this; } /** * Will delete semaphore even if currently acquired by sessions * * Generated from protobuf field bool force = 3; * @return bool */ public function getForce() { return $this->force; } /** * Will delete semaphore even if currently acquired by sessions * * Generated from protobuf field bool force = 3; * @param bool $var * @return $this */ public function setForce($var) { GPBUtil::checkBool($var); $this->force = $var; return $this; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeleteSemaphore::class, \Ydb\Coordination\SessionRequest_DeleteSemaphore::class);