Google_RoomJoinRequest
The Google Pagespeed Insights Google RoomJoinRequest class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomJoinRequest extends Google_Model {
- protected $__clientAddressType = 'Google_RoomClientAddress';
- protected $__clientAddressDataType = '';
- public $clientAddress;
- public $kind;
- protected $__networkDiagnosticsType = 'Google_NetworkDiagnostics';
- protected $__networkDiagnosticsDataType = '';
- public $networkDiagnostics;
- public function setClientAddress(Google_RoomClientAddress $clientAddress) {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress() {
- return $this->clientAddress;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNetworkDiagnostics(Google_NetworkDiagnostics $networkDiagnostics) {
- $this->networkDiagnostics = $networkDiagnostics;
- }
- public function getNetworkDiagnostics() {
- return $this->networkDiagnostics;
- }
- }