class Google::Apis::GamesV1::PlayerScoreSubmissionList
A list of score submission requests.
Attributes
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string `games#playerScoreSubmissionList`. Corresponds to the JSON property `kind` @return [String]
scores[RW]
The score submissions. Corresponds to the JSON property `scores` @return [Array<Google::Apis::GamesV1::ScoreSubmission>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/games_v1/classes.rb, line 2265 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/games_v1/classes.rb, line 2270 def update!(**args) @kind = args[:kind] if args.key?(:kind) @scores = args[:scores] if args.key?(:scores) end