Class: Google::Apis::YoutubeV3::LiveChatPollOpenedDetails
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveChatPollOpenedDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb
Instance Attribute Summary collapse
-
#id ⇒ String
Corresponds to the JSON property
id
. -
#items ⇒ Array<Google::Apis::YoutubeV3::LiveChatPollItem>
Corresponds to the JSON property
items
. -
#prompt ⇒ String
Corresponds to the JSON property
prompt
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveChatPollOpenedDetails
constructor
A new instance of LiveChatPollOpenedDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveChatPollOpenedDetails
Returns a new instance of LiveChatPollOpenedDetails
4804 4805 4806 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4804 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Corresponds to the JSON property id
4792 4793 4794 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4792 def id @id end |
#items ⇒ Array<Google::Apis::YoutubeV3::LiveChatPollItem>
Corresponds to the JSON property items
4797 4798 4799 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4797 def items @items end |
#prompt ⇒ String
Corresponds to the JSON property prompt
4802 4803 4804 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4802 def prompt @prompt end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4809 4810 4811 4812 4813 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4809 def update!(**args) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @prompt = args[:prompt] if args.key?(:prompt) end |