Skip to content

Commit 8ee5f30

Browse files
committed
Updated Games.php
1 parent 56b7472 commit 8ee5f30

1 file changed

Lines changed: 82 additions & 0 deletions

File tree

src/Google/Service/Games.php

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3540,6 +3540,8 @@ class Google_Service_Games_Player extends Google_Model
35403540
public $kind;
35413541
protected $lastPlayedWithType = 'Google_Service_Games_Played';
35423542
protected $lastPlayedWithDataType = '';
3543+
protected $nameType = 'Google_Service_Games_PlayerName';
3544+
protected $nameDataType = '';
35433545
public $playerId;
35443546

35453547
public function setAvatarImageUrl($avatarImageUrl)
@@ -3582,6 +3584,16 @@ public function getLastPlayedWith()
35823584
return $this->lastPlayedWith;
35833585
}
35843586

3587+
public function setName(Google_Service_Games_PlayerName $name)
3588+
{
3589+
$this->name = $name;
3590+
}
3591+
3592+
public function getName()
3593+
{
3594+
return $this->name;
3595+
}
3596+
35853597
public function setPlayerId($playerId)
35863598
{
35873599
$this->playerId = $playerId;
@@ -3894,6 +3906,32 @@ public function getNextPageToken()
38943906
}
38953907
}
38963908

3909+
class Google_Service_Games_PlayerName extends Google_Model
3910+
{
3911+
public $familyName;
3912+
public $givenName;
3913+
3914+
public function setFamilyName($familyName)
3915+
{
3916+
$this->familyName = $familyName;
3917+
}
3918+
3919+
public function getFamilyName()
3920+
{
3921+
return $this->familyName;
3922+
}
3923+
3924+
public function setGivenName($givenName)
3925+
{
3926+
$this->givenName = $givenName;
3927+
}
3928+
3929+
public function getGivenName()
3930+
{
3931+
return $this->givenName;
3932+
}
3933+
}
3934+
38973935
class Google_Service_Games_PlayerScore extends Google_Model
38983936
{
38993937
public $formattedScore;
@@ -4227,6 +4265,7 @@ class Google_Service_Games_Room extends Google_Collection
42274265
protected $creationDetailsType = 'Google_Service_Games_RoomModification';
42284266
protected $creationDetailsDataType = '';
42294267
public $description;
4268+
public $inviterId;
42304269
public $kind;
42314270
protected $lastUpdateDetailsType = 'Google_Service_Games_RoomModification';
42324271
protected $lastUpdateDetailsDataType = '';
@@ -4287,6 +4326,16 @@ public function getDescription()
42874326
return $this->description;
42884327
}
42894328

4329+
public function setInviterId($inviterId)
4330+
{
4331+
$this->inviterId = $inviterId;
4332+
}
4333+
4334+
public function getInviterId()
4335+
{
4336+
return $this->inviterId;
4337+
}
4338+
42904339
public function setKind($kind)
42914340
{
42924341
$this->kind = $kind;
@@ -5189,6 +5238,8 @@ class Google_Service_Games_TurnBasedMatch extends Google_Collection
51895238
protected $creationDetailsDataType = '';
51905239
protected $dataType = 'Google_Service_Games_TurnBasedMatchData';
51915240
protected $dataDataType = '';
5241+
public $description;
5242+
public $inviterId;
51925243
public $kind;
51935244
protected $lastUpdateDetailsType = 'Google_Service_Games_TurnBasedMatchModification';
51945245
protected $lastUpdateDetailsDataType = '';
@@ -5206,6 +5257,7 @@ class Google_Service_Games_TurnBasedMatch extends Google_Collection
52065257
public $status;
52075258
public $userMatchStatus;
52085259
public $variant;
5260+
public $withParticipantId;
52095261

52105262
public function setApplicationId($applicationId)
52115263
{
@@ -5247,6 +5299,26 @@ public function getData()
52475299
return $this->data;
52485300
}
52495301

5302+
public function setDescription($description)
5303+
{
5304+
$this->description = $description;
5305+
}
5306+
5307+
public function getDescription()
5308+
{
5309+
return $this->description;
5310+
}
5311+
5312+
public function setInviterId($inviterId)
5313+
{
5314+
$this->inviterId = $inviterId;
5315+
}
5316+
5317+
public function getInviterId()
5318+
{
5319+
return $this->inviterId;
5320+
}
5321+
52505322
public function setKind($kind)
52515323
{
52525324
$this->kind = $kind;
@@ -5376,6 +5448,16 @@ public function getVariant()
53765448
{
53775449
return $this->variant;
53785450
}
5451+
5452+
public function setWithParticipantId($withParticipantId)
5453+
{
5454+
$this->withParticipantId = $withParticipantId;
5455+
}
5456+
5457+
public function getWithParticipantId()
5458+
{
5459+
return $this->withParticipantId;
5460+
}
53795461
}
53805462

53815463
class Google_Service_Games_TurnBasedMatchCreateRequest extends Google_Collection

0 commit comments

Comments
 (0)