Class: Google::Apis::YoutubePartnerV1::Rating
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::Rating
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
 generated/google/apis/youtube_partner_v1/representations.rb,
 generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #rating  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The rating that the asset received. 
- 
  
    
      #rating_system  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The rating system associated with the rating. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Rating 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Rating. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rating
Returns a new instance of Rating
| 2997 2998 2999 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2997 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#rating ⇒ String
The rating that the asset received.
Corresponds to the JSON property rating
| 2990 2991 2992 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2990 def @rating end | 
#rating_system ⇒ String
The rating system associated with the rating.
Corresponds to the JSON property ratingSystem
| 2995 2996 2997 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2995 def @rating_system end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3002 3003 3004 3005 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3002 def update!(**args) @rating = args[:rating] if args.key?(:rating) @rating_system = args[:rating_system] if args.key?(:rating_system) end |