Google_RoomCreateRequest
The Google Pagespeed Insights Google RoomCreateRequest class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomCreateRequest extends Google_Model {
- protected $__autoMatchingCriteriaType = 'Google_RoomAutoMatchingCriteria';
- protected $__autoMatchingCriteriaDataType = '';
- public $autoMatchingCriteria;
- protected $__clientAddressType = 'Google_RoomClientAddress';
- protected $__clientAddressDataType = '';
- public $clientAddress;
- public $invitedPlayerIds;
- public $kind;
- protected $__networkDiagnosticsType = 'Google_NetworkDiagnostics';
- protected $__networkDiagnosticsDataType = '';
- public $networkDiagnostics;
- public $variant;
- public function setAutoMatchingCriteria(Google_RoomAutoMatchingCriteria $autoMatchingCriteria) {
- $this->autoMatchingCriteria = $autoMatchingCriteria;
- }
- public function getAutoMatchingCriteria() {
- return $this->autoMatchingCriteria;
- }
- public function setClientAddress(Google_RoomClientAddress $clientAddress) {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress() {
- return $this->clientAddress;
- }
- public function setInvitedPlayerIds(/** array(Google_string) */ $invitedPlayerIds) {
- $this->assertIsArray($invitedPlayerIds, 'Google_string', __METHOD__);
- $this->invitedPlayerIds = $invitedPlayerIds;
- }
- public function getInvitedPlayerIds() {
- return $this->invitedPlayerIds;
- }
- 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;
- }
- public function setVariant($variant) {
- $this->variant = $variant;
- }
- public function getVariant() {
- return $this->variant;
- }
- }