Class: Google::Apis::AndroidpublisherV3::Listing
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::Listing
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb 
Overview
A localized store listing. The resource for ListingsService.
Instance Attribute Summary collapse
- 
  
    
      #full_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Full description of the app.
 - 
  
    
      #language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German).
 - 
  
    
      #short_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Short description of the app.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Localized title of the app.
 - 
  
    
      #video  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
URL of a promotional YouTube video for the app.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Listing 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Listing.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Listing
Returns a new instance of Listing.
      3604 3605 3606  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3604 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#full_description ⇒ String
Full description of the app.
Corresponds to the JSON property fullDescription
      3581 3582 3583  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3581 def full_description @full_description end  | 
  
#language ⇒ String
Language localization code (a BCP-47 language tag; for example, "de-AT" for
Austrian German).
Corresponds to the JSON property language
      3587 3588 3589  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3587 def language @language end  | 
  
#short_description ⇒ String
Short description of the app.
Corresponds to the JSON property shortDescription
      3592 3593 3594  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3592 def short_description @short_description end  | 
  
#title ⇒ String
Localized title of the app.
Corresponds to the JSON property title
      3597 3598 3599  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3597 def title @title end  | 
  
#video ⇒ String
URL of a promotional YouTube video for the app.
Corresponds to the JSON property video
      3602 3603 3604  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3602 def video @video end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3609 3610 3611 3612 3613 3614 3615  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3609 def update!(**args) @full_description = args[:full_description] if args.key?(:full_description) @language = args[:language] if args.key?(:language) @short_description = args[:short_description] if args.key?(:short_description) @title = args[:title] if args.key?(:title) @video = args[:video] if args.key?(:video) end  |