Class: Google::Apis::GamesV1::TurnBasedMatchModification

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 turn-based match 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) ⇒ TurnBasedMatchModification

Returns a new instance of TurnBasedMatchModification.



4429
4430
4431
# File 'generated/google/apis/games_v1/classes.rb', line 4429

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


4416
4417
4418
# File 'generated/google/apis/games_v1/classes.rb', line 4416

def kind
  @kind
end

#modified_timestamp_millisString

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

Returns:

  • (String)


4422
4423
4424
# File 'generated/google/apis/games_v1/classes.rb', line 4422

def modified_timestamp_millis
  @modified_timestamp_millis
end

#participant_idString

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

Returns:

  • (String)


4427
4428
4429
# File 'generated/google/apis/games_v1/classes.rb', line 4427

def participant_id
  @participant_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4434
4435
4436
4437
4438
# File 'generated/google/apis/games_v1/classes.rb', line 4434

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