SendColorSz.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: common.proto
  4. namespace Common_pack;
  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>common_pack.SendColorSz</code>
  10. */
  11. class SendColorSz extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. *
  15. *
  16. * Generated from protobuf field <code>.common_pack.roleType color = 1;</code>
  17. */
  18. protected $color = 0;
  19. /**
  20. * Constructor.
  21. *
  22. * @param array $data {
  23. * Optional. Data for populating the Message object.
  24. *
  25. * @type int $color
  26. *
  27. * }
  28. */
  29. public function __construct($data = NULL) {
  30. \GPBMetadata\Common::initOnce();
  31. parent::__construct($data);
  32. }
  33. /**
  34. *
  35. *
  36. * Generated from protobuf field <code>.common_pack.roleType color = 1;</code>
  37. * @return int
  38. */
  39. public function getColor()
  40. {
  41. return $this->color;
  42. }
  43. /**
  44. *
  45. *
  46. * Generated from protobuf field <code>.common_pack.roleType color = 1;</code>
  47. * @param int $var
  48. * @return $this
  49. */
  50. public function setColor($var)
  51. {
  52. GPBUtil::checkEnum($var, \Common_pack\roleType::class);
  53. $this->color = $var;
  54. return $this;
  55. }
  56. }