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.
2801 2802 2803 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rating ⇒ String
The rating that the asset received.
Corresponds to the JSON property rating
2794 2795 2796 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2794 def @rating end |
#rating_system ⇒ String
The rating system associated with the rating.
Corresponds to the JSON property ratingSystem
2799 2800 2801 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2799 def @rating_system end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2806 2807 2808 2809 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2806 def update!(**args) @rating = args[:rating] if args.key?(:rating) @rating_system = args[:rating_system] if args.key?(:rating_system) end |