Class: Google::Apis::GamesV1::TurnBasedMatchDataRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::TurnBasedMatchDataRequest
 
- 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 sending a turn-based match data object.
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The byte representation of the data (limited to 128 kB), as a Base64-encoded string with the URL_SAFE encoding option. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TurnBasedMatchDataRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TurnBasedMatchDataRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TurnBasedMatchDataRequest
Returns a new instance of TurnBasedMatchDataRequest
| 4369 4370 4371 | # File 'generated/google/apis/games_v1/classes.rb', line 4369 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#data ⇒ String
The byte representation of the data (limited to 128 kB), as a Base64-encoded
string with the URL_SAFE encoding option.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
| 4361 4362 4363 | # File 'generated/google/apis/games_v1/classes.rb', line 4361 def data @data end | 
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#turnBasedMatchDataRequest.
Corresponds to the JSON property kind
| 4367 4368 4369 | # File 'generated/google/apis/games_v1/classes.rb', line 4367 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4374 4375 4376 4377 | # File 'generated/google/apis/games_v1/classes.rb', line 4374 def update!(**args) @data = args[:data] if args.key?(:data) @kind = args[:kind] if args.key?(:kind) end |