DecimalType.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: protos/ydb_value.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.DecimalType</code>
  10. */
  11. class DecimalType extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * Generated from protobuf field <code>uint32 precision = 1;</code>
  15. */
  16. protected $precision = 0;
  17. /**
  18. * Generated from protobuf field <code>uint32 scale = 2;</code>
  19. */
  20. protected $scale = 0;
  21. /**
  22. * Constructor.
  23. *
  24. * @param array $data {
  25. * Optional. Data for populating the Message object.
  26. *
  27. * @type int $precision
  28. * @type int $scale
  29. * }
  30. */
  31. public function __construct($data = NULL) {
  32. \GPBMetadata\Protos\YdbValue::initOnce();
  33. parent::__construct($data);
  34. }
  35. /**
  36. * Generated from protobuf field <code>uint32 precision = 1;</code>
  37. * @return int
  38. */
  39. public function getPrecision()
  40. {
  41. return $this->precision;
  42. }
  43. /**
  44. * Generated from protobuf field <code>uint32 precision = 1;</code>
  45. * @param int $var
  46. * @return $this
  47. */
  48. public function setPrecision($var)
  49. {
  50. GPBUtil::checkUint32($var);
  51. $this->precision = $var;
  52. return $this;
  53. }
  54. /**
  55. * Generated from protobuf field <code>uint32 scale = 2;</code>
  56. * @return int
  57. */
  58. public function getScale()
  59. {
  60. return $this->scale;
  61. }
  62. /**
  63. * Generated from protobuf field <code>uint32 scale = 2;</code>
  64. * @param int $var
  65. * @return $this
  66. */
  67. public function setScale($var)
  68. {
  69. GPBUtil::checkUint32($var);
  70. $this->scale = $var;
  71. return $this;
  72. }
  73. }