Class: Google::Apis::GamesV1::PlayerScoreSubmissionList

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 a list of score submission requests

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) ⇒ PlayerScoreSubmissionList

Returns a new instance of PlayerScoreSubmissionList.



2650
2651
2652
# File 'generated/google/apis/games_v1/classes.rb', line 2650

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


2643
2644
2645
# File 'generated/google/apis/games_v1/classes.rb', line 2643

def kind
  @kind
end

#scoresArray<Google::Apis::GamesV1::ScoreSubmission>

The score submissions. Corresponds to the JSON property scores



2648
2649
2650
# File 'generated/google/apis/games_v1/classes.rb', line 2648

def scores
  @scores
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2655
2656
2657
2658
# File 'generated/google/apis/games_v1/classes.rb', line 2655

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