Class: Google::Apis::GamesV1::RoomModification

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/games_v1/classes.rb,
generated/google/apis/games_v1/representations.rb,
generated/google/apis/games_v1/representations.rb

Overview

This is a JSON template for room modification metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RoomModification

Returns a new instance of RoomModification.



3590
3591
3592
# File 'generated/google/apis/games_v1/classes.rb', line 3590

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#roomModification. Corresponds to the JSON property kind

Returns:

  • (String)


3577
3578
3579
# File 'generated/google/apis/games_v1/classes.rb', line 3577

def kind
  @kind
end

#modified_timestamp_millisString

The timestamp at which they modified the room, in milliseconds since the epoch in UTC. Corresponds to the JSON property modifiedTimestampMillis

Returns:

  • (String)


3583
3584
3585
# File 'generated/google/apis/games_v1/classes.rb', line 3583

def modified_timestamp_millis
  @modified_timestamp_millis
end

#participant_idString

The ID of the participant that modified the room. Corresponds to the JSON property participantId

Returns:

  • (String)


3588
3589
3590
# File 'generated/google/apis/games_v1/classes.rb', line 3588

def participant_id
  @participant_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3595
3596
3597
3598
3599
# File 'generated/google/apis/games_v1/classes.rb', line 3595

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @modified_timestamp_millis = args[:modified_timestamp_millis] if args.key?(:modified_timestamp_millis)
  @participant_id = args[:participant_id] if args.key?(:participant_id)
end