Class: Google::Apis::GamesV1::TurnBasedMatchModification
- Inherits:
-
Object
- Object
- Google::Apis::GamesV1::TurnBasedMatchModification
- 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 turn-based match modification metadata.
Instance Attribute Summary collapse
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#modified_timestamp_millis ⇒ Fixnum
The timestamp at which they modified the match, in milliseconds since the epoch in UTC.
-
#participant_id ⇒ String
The ID of the participant that modified the match.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TurnBasedMatchModification
constructor
A new instance of TurnBasedMatchModification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TurnBasedMatchModification
Returns a new instance of TurnBasedMatchModification
4433 4434 4435 |
# File 'generated/google/apis/games_v1/classes.rb', line 4433 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#turnBasedMatchModification.
Corresponds to the JSON property kind
4420 4421 4422 |
# File 'generated/google/apis/games_v1/classes.rb', line 4420 def kind @kind end |
#modified_timestamp_millis ⇒ Fixnum
The timestamp at which they modified the match, in milliseconds since the
epoch in UTC.
Corresponds to the JSON property modifiedTimestampMillis
4426 4427 4428 |
# File 'generated/google/apis/games_v1/classes.rb', line 4426 def @modified_timestamp_millis end |
#participant_id ⇒ String
The ID of the participant that modified the match.
Corresponds to the JSON property participantId
4431 4432 4433 |
# File 'generated/google/apis/games_v1/classes.rb', line 4431 def participant_id @participant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4438 4439 4440 4441 4442 |
# File 'generated/google/apis/games_v1/classes.rb', line 4438 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 |