Class: Google::Apis::GamesV1::ListPlayerScoreResponse
- Inherits:
-
Object
- Object
- Google::Apis::GamesV1::ListPlayerScoreResponse
- 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 list of score submission statuses.
Instance Attribute Summary collapse
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#submitted_scores ⇒ Array<Google::Apis::GamesV1::PlayerScoreResponse>
The score submissions statuses.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPlayerScoreResponse
constructor
A new instance of ListPlayerScoreResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPlayerScoreResponse
Returns a new instance of ListPlayerScoreResponse
2560 2561 2562 |
# File 'generated/google/apis/games_v1/classes.rb', line 2560 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#playerScoreListResponse.
Corresponds to the JSON property kind
2553 2554 2555 |
# File 'generated/google/apis/games_v1/classes.rb', line 2553 def kind @kind end |
#submitted_scores ⇒ Array<Google::Apis::GamesV1::PlayerScoreResponse>
The score submissions statuses.
Corresponds to the JSON property submittedScores
2558 2559 2560 |
# File 'generated/google/apis/games_v1/classes.rb', line 2558 def submitted_scores @submitted_scores end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2565 2566 2567 2568 |
# File 'generated/google/apis/games_v1/classes.rb', line 2565 def update!(**args) @kind = args[:kind] if args.key?(:kind) @submitted_scores = args[:submitted_scores] if args.key?(:submitted_scores) end |