RequestMatchexchangeOpen.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: proto/game.proto
  4. namespace Uraus\Kku\Request;
  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>uraus.kku.Request.RequestMatchexchangeOpen</code>
  10. */
  11. class RequestMatchexchangeOpen extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * 时间戳
  15. *
  16. * Generated from protobuf field <code>int64 times = 1;</code>
  17. */
  18. protected $times = 0;
  19. /**
  20. * Constructor.
  21. *
  22. * @param array $data {
  23. * Optional. Data for populating the Message object.
  24. *
  25. * @type int|string $times
  26. * 时间戳
  27. * }
  28. */
  29. public function __construct($data = NULL) {
  30. \GPBMetadata\Proto\Game::initOnce();
  31. parent::__construct($data);
  32. }
  33. /**
  34. * 时间戳
  35. *
  36. * Generated from protobuf field <code>int64 times = 1;</code>
  37. * @return int|string
  38. */
  39. public function getTimes()
  40. {
  41. return $this->times;
  42. }
  43. /**
  44. * 时间戳
  45. *
  46. * Generated from protobuf field <code>int64 times = 1;</code>
  47. * @param int|string $var
  48. * @return $this
  49. */
  50. public function setTimes($var)
  51. {
  52. GPBUtil::checkInt64($var);
  53. $this->times = $var;
  54. return $this;
  55. }
  56. }
  57. // Adding a class alias for backwards compatibility with the previous class name.
  58. class_alias(RequestMatchexchangeOpen::class, \Uraus\Kku\Request_RequestMatchexchangeOpen::class);