Class: Google::Apis::GamesV1::PlayerScoreSubmissionList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::PlayerScoreSubmissionList
 
- 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
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
- 
  
    
      #scores  ⇒ Array<Google::Apis::GamesV1::ScoreSubmission> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The score submissions. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PlayerScoreSubmissionList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PlayerScoreSubmissionList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PlayerScoreSubmissionList
Returns a new instance of PlayerScoreSubmissionList
| 2644 2645 2646 | # File 'generated/google/apis/games_v1/classes.rb', line 2644 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#playerScoreSubmissionList.
Corresponds to the JSON property kind
| 2637 2638 2639 | # File 'generated/google/apis/games_v1/classes.rb', line 2637 def kind @kind end | 
#scores ⇒ Array<Google::Apis::GamesV1::ScoreSubmission>
The score submissions.
Corresponds to the JSON property scores
| 2642 2643 2644 | # File 'generated/google/apis/games_v1/classes.rb', line 2642 def scores @scores end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2649 2650 2651 2652 | # File 'generated/google/apis/games_v1/classes.rb', line 2649 def update!(**args) @kind = args[:kind] if args.key?(:kind) @scores = args[:scores] if args.key?(:scores) end |