Google_RoomStatus
The Google Pagespeed Insights Google RoomStatus class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomStatus extends Google_Model {
- public $kind;
- protected $__participantsType = 'Google_RoomParticipant';
- protected $__participantsDataType = 'array';
- public $participants;
- public $roomId;
- public $status;
- public $statusVersion;
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setParticipants(/** array(Google_RoomParticipant) */ $participants) {
- $this->assertIsArray($participants, 'Google_RoomParticipant', __METHOD__);
- $this->participants = $participants;
- }
- public function getParticipants() {
- return $this->participants;
- }
- public function setRoomId($roomId) {
- $this->roomId = $roomId;
- }
- public function getRoomId() {
- return $this->roomId;
- }
- public function setStatus($status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- public function setStatusVersion($statusVersion) {
- $this->statusVersion = $statusVersion;
- }
- public function getStatusVersion() {
- return $this->statusVersion;
- }
- }