Google_RoomLeaveDiagnostics
The Google Pagespeed Insights Google RoomLeaveDiagnostics class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomLeaveDiagnostics extends Google_Model {
- public $androidNetworkSubtype;
- public $androidNetworkType;
- public $kind;
- protected $__peerSessionType = 'Google_PeerSessionDiagnostics';
- protected $__peerSessionDataType = 'array';
- public $peerSession;
- public $socketsUsed;
- public function setAndroidNetworkSubtype($androidNetworkSubtype) {
- $this->androidNetworkSubtype = $androidNetworkSubtype;
- }
- public function getAndroidNetworkSubtype() {
- return $this->androidNetworkSubtype;
- }
- public function setAndroidNetworkType($androidNetworkType) {
- $this->androidNetworkType = $androidNetworkType;
- }
- public function getAndroidNetworkType() {
- return $this->androidNetworkType;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPeerSession(/** array(Google_PeerSessionDiagnostics) */ $peerSession) {
- $this->assertIsArray($peerSession, 'Google_PeerSessionDiagnostics', __METHOD__);
- $this->peerSession = $peerSession;
- }
- public function getPeerSession() {
- return $this->peerSession;
- }
- public function setSocketsUsed($socketsUsed) {
- $this->socketsUsed = $socketsUsed;
- }
- public function getSocketsUsed() {
- return $this->socketsUsed;
- }
- }