CancelOperationRequest.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: protos/ydb_operation.proto
  4. namespace Ydb\Operations;
  5. use Google\Protobuf\Internal\GPBType;
  6. use Google\Protobuf\Internal\RepeatedField;
  7. use Google\Protobuf\Internal\GPBUtil;
  8. /**
  9. * Generated from protobuf message <code>Ydb.Operations.CancelOperationRequest</code>
  10. */
  11. class CancelOperationRequest extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
  15. */
  16. protected $id = '';
  17. /**
  18. * Constructor.
  19. *
  20. * @param array $data {
  21. * Optional. Data for populating the Message object.
  22. *
  23. * @type string $id
  24. * }
  25. */
  26. public function __construct($data = NULL) {
  27. \GPBMetadata\Protos\YdbOperation::initOnce();
  28. parent::__construct($data);
  29. }
  30. /**
  31. * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
  32. * @return string
  33. */
  34. public function getId()
  35. {
  36. return $this->id;
  37. }
  38. /**
  39. * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
  40. * @param string $var
  41. * @return $this
  42. */
  43. public function setId($var)
  44. {
  45. GPBUtil::checkString($var, True);
  46. $this->id = $var;
  47. return $this;
  48. }
  49. }