Google_RoomLeaveRequest
The Google Pagespeed Insights Google RoomLeaveRequest class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_RoomLeaveRequest extends Google_Model {
- public $kind;
- protected $__leaveDiagnosticsType = 'Google_RoomLeaveDiagnostics';
- protected $__leaveDiagnosticsDataType = '';
- public $leaveDiagnostics;
- public $reason;
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setLeaveDiagnostics(Google_RoomLeaveDiagnostics $leaveDiagnostics) {
- $this->leaveDiagnostics = $leaveDiagnostics;
- }
- public function getLeaveDiagnostics() {
- return $this->leaveDiagnostics;
- }
- public function setReason($reason) {
- $this->reason = $reason;
- }
- public function getReason() {
- return $this->reason;
- }
- }