Class: Google::Apis::PlaycustomappV1::CustomApp
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PlaycustomappV1::CustomApp
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/playcustomapp_v1/classes.rb,
generated/google/apis/playcustomapp_v1/representations.rb,
generated/google/apis/playcustomapp_v1/representations.rb 
Overview
This resource represents a custom app.
Instance Attribute Summary collapse
- 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Default listing language in BCP 47 format.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Title for the Android app.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomApp 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CustomApp.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomApp
Returns a new instance of CustomApp
      39 40 41  | 
    
      # File 'generated/google/apis/playcustomapp_v1/classes.rb', line 39 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#language_code ⇒ String
Default listing language in BCP 47 format.
Corresponds to the JSON property languageCode
      32 33 34  | 
    
      # File 'generated/google/apis/playcustomapp_v1/classes.rb', line 32 def language_code @language_code end  | 
  
#title ⇒ String
Title for the Android app.
Corresponds to the JSON property title
      37 38 39  | 
    
      # File 'generated/google/apis/playcustomapp_v1/classes.rb', line 37 def title @title end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      44 45 46 47  | 
    
      # File 'generated/google/apis/playcustomapp_v1/classes.rb', line 44 def update!(**args) @language_code = args[:language_code] if args.key?(:language_code) @title = args[:title] if args.key?(:title) end  |