Google_RoomModification
The WordPress Core Google RoomModification class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_GamesService.php
- class Google_RoomModification extends Google_Model {
- public $kind;
- public $modifiedTimestampMillis;
- public $participantId;
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setModifiedTimestampMillis( $modifiedTimestampMillis) {
- $this->modifiedTimestampMillis = $modifiedTimestampMillis;
- }
- public function getModifiedTimestampMillis() {
- return $this->modifiedTimestampMillis;
- }
- public function setParticipantId( $participantId) {
- $this->participantId = $participantId;
- }
- public function getParticipantId() {
- return $this->participantId;
- }
- }