CostInfo.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: protos/ydb_common.proto
  4. namespace Ydb;
  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.CostInfo</code>
  10. */
  11. class CostInfo extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * Total amount of request units (RU), consumed by the operation.
  15. *
  16. * Generated from protobuf field <code>double consumed_units = 1;</code>
  17. */
  18. protected $consumed_units = 0.0;
  19. /**
  20. * Constructor.
  21. *
  22. * @param array $data {
  23. * Optional. Data for populating the Message object.
  24. *
  25. * @type float $consumed_units
  26. * Total amount of request units (RU), consumed by the operation.
  27. * }
  28. */
  29. public function __construct($data = NULL) {
  30. \GPBMetadata\Protos\YdbCommon::initOnce();
  31. parent::__construct($data);
  32. }
  33. /**
  34. * Total amount of request units (RU), consumed by the operation.
  35. *
  36. * Generated from protobuf field <code>double consumed_units = 1;</code>
  37. * @return float
  38. */
  39. public function getConsumedUnits()
  40. {
  41. return $this->consumed_units;
  42. }
  43. /**
  44. * Total amount of request units (RU), consumed by the operation.
  45. *
  46. * Generated from protobuf field <code>double consumed_units = 1;</code>
  47. * @param float $var
  48. * @return $this
  49. */
  50. public function setConsumedUnits($var)
  51. {
  52. GPBUtil::checkDouble($var);
  53. $this->consumed_units = $var;
  54. return $this;
  55. }
  56. }