Class: Google::Apis::AndroidpublisherV2::Listing
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV2::Listing
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #full_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Full description of the app; this may be up to 4000 characters in length.
 - 
  
    
      #language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Language localization code (for example, "de-AT" for Austrian German).
 - 
  
    
      #short_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Short description of the app (previously known as promo text); this may be up to 80 characters in length.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
App's localized title.
 - 
  
    
      #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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Listing
Returns a new instance of Listing
      945 946 947  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 945 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#full_description ⇒ String
Full description of the app; this may be up to 4000 characters in length.
Corresponds to the JSON property fullDescription
      922 923 924  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 922 def full_description @full_description end  | 
  
#language ⇒ String
Language localization code (for example, "de-AT" for Austrian German).
Corresponds to the JSON property language
      927 928 929  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 927 def language @language end  | 
  
#short_description ⇒ String
Short description of the app (previously known as promo text); this may be up
to 80 characters in length.
Corresponds to the JSON property shortDescription
      933 934 935  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 933 def short_description @short_description end  | 
  
#title ⇒ String
App's localized title.
Corresponds to the JSON property title
      938 939 940  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 938 def title @title end  | 
  
#video ⇒ String
URL of a promotional YouTube video for the app.
Corresponds to the JSON property video
      943 944 945  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 943 def video @video end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      950 951 952 953 954 955 956  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 950 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  |