Google_RoomParticipant
The Google Pagespeed Insights Google RoomParticipant class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomParticipant extends Google_Model {
- protected $__autoMatchedPlayerType = 'Google_AnonymousPlayer';
- protected $__autoMatchedPlayerDataType = '';
- public $autoMatchedPlayer;
- protected $__clientAddressType = 'Google_RoomClientAddress';
- protected $__clientAddressDataType = '';
- public $clientAddress;
- public $connected;
- public $id;
- public $kind;
- public $leaveReason;
- protected $__playerType = 'Google_Player';
- protected $__playerDataType = '';
- public $player;
- public $status;
- public function setAutoMatchedPlayer(Google_AnonymousPlayer $autoMatchedPlayer) {
- $this->autoMatchedPlayer = $autoMatchedPlayer;
- }
- public function getAutoMatchedPlayer() {
- return $this->autoMatchedPlayer;
- }
- public function setClientAddress(Google_RoomClientAddress $clientAddress) {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress() {
- return $this->clientAddress;
- }
- public function setConnected($connected) {
- $this->connected = $connected;
- }
- public function getConnected() {
- return $this->connected;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setLeaveReason($leaveReason) {
- $this->leaveReason = $leaveReason;
- }
- public function getLeaveReason() {
- return $this->leaveReason;
- }
- public function setPlayer(Google_Player $player) {
- $this->player = $player;
- }
- public function getPlayer() {
- return $this->player;
- }
- public function setStatus($status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- }