Class: Google::Apis::GamesV1::TurnBasedMatchResults
- Inherits:
-
Object
- Object
- Google::Apis::GamesV1::TurnBasedMatchResults
- 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 a turn-based match results object.
Instance Attribute Summary collapse
-
#data ⇒ Google::Apis::GamesV1::TurnBasedMatchDataRequest
This is a JSON template for sending a turn-based match data object.
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#match_version ⇒ Fixnum
The version of the match being updated.
-
#results ⇒ Array<Google::Apis::GamesV1::ParticipantResult>
The match results for the participants in the match.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TurnBasedMatchResults
constructor
A new instance of TurnBasedMatchResults.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TurnBasedMatchResults
Returns a new instance of TurnBasedMatchResults
4567 4568 4569 |
# File 'generated/google/apis/games_v1/classes.rb', line 4567 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ Google::Apis::GamesV1::TurnBasedMatchDataRequest
This is a JSON template for sending a turn-based match data object.
Corresponds to the JSON property data
4549 4550 4551 |
# File 'generated/google/apis/games_v1/classes.rb', line 4549 def data @data end |
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#turnBasedMatchResults.
Corresponds to the JSON property kind
4555 4556 4557 |
# File 'generated/google/apis/games_v1/classes.rb', line 4555 def kind @kind end |
#match_version ⇒ Fixnum
The version of the match being updated.
Corresponds to the JSON property matchVersion
4560 4561 4562 |
# File 'generated/google/apis/games_v1/classes.rb', line 4560 def match_version @match_version end |
#results ⇒ Array<Google::Apis::GamesV1::ParticipantResult>
The match results for the participants in the match.
Corresponds to the JSON property results
4565 4566 4567 |
# File 'generated/google/apis/games_v1/classes.rb', line 4565 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4572 4573 4574 4575 4576 4577 |
# File 'generated/google/apis/games_v1/classes.rb', line 4572 def update!(**args) @data = args[:data] if args.key?(:data) @kind = args[:kind] if args.key?(:kind) @match_version = args[:match_version] if args.key?(:match_version) @results = args[:results] if args.key?(:results) end |