class Google::Apis::YoutubeV3::PropertyValue
A pair Property / Value.
Attributes
property[RW]
A property. Corresponds to the JSON property `property` @return [String]
value[RW]
The property's value. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 6122 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 6127 def update!(**args) @property = args[:property] if args.key?(:property) @value = args[:value] if args.key?(:value) end