Skip to content

Commit 6333ad0

Browse files
committed
Updated GamesManagement.php
1 parent eba5e5b commit 6333ad0

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

src/Google/Service/GamesManagement.php

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,32 @@ public function getUpdateOccurred()
484484
}
485485
}
486486

487+
class Google_Service_GamesManagement_GamesPlayedResource extends Google_Model
488+
{
489+
public $autoMatched;
490+
public $timeMillis;
491+
492+
public function setAutoMatched($autoMatched)
493+
{
494+
$this->autoMatched = $autoMatched;
495+
}
496+
497+
public function getAutoMatched()
498+
{
499+
return $this->autoMatched;
500+
}
501+
502+
public function setTimeMillis($timeMillis)
503+
{
504+
$this->timeMillis = $timeMillis;
505+
}
506+
507+
public function getTimeMillis()
508+
{
509+
return $this->timeMillis;
510+
}
511+
}
512+
487513
class Google_Service_GamesManagement_HiddenPlayer extends Google_Model
488514
{
489515
public $hiddenTimeMillis;
@@ -565,6 +591,8 @@ class Google_Service_GamesManagement_Player extends Google_Model
565591
public $avatarImageUrl;
566592
public $displayName;
567593
public $kind;
594+
protected $lastPlayedWithType = 'Google_Service_GamesManagement_GamesPlayedResource';
595+
protected $lastPlayedWithDataType = '';
568596
public $playerId;
569597

570598
public function setAvatarImageUrl($avatarImageUrl)
@@ -597,6 +625,16 @@ public function getKind()
597625
return $this->kind;
598626
}
599627

628+
public function setLastPlayedWith(Google_Service_GamesManagement_GamesPlayedResource $lastPlayedWith)
629+
{
630+
$this->lastPlayedWith = $lastPlayedWith;
631+
}
632+
633+
public function getLastPlayedWith()
634+
{
635+
return $this->lastPlayedWith;
636+
}
637+
600638
public function setPlayerId($playerId)
601639
{
602640
$this->playerId = $playerId;

0 commit comments

Comments
 (0)