Class: Google::Apis::YoutubeV3::LiveChatPollEditedDetails
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveChatPollEditedDetails
- 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) ⇒ LiveChatPollEditedDetails
constructor
A new instance of LiveChatPollEditedDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveChatPollEditedDetails
Returns a new instance of LiveChatPollEditedDetails
4582 4583 4584 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Corresponds to the JSON property id
4570 4571 4572 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4570 def id @id end |
#items ⇒ Array<Google::Apis::YoutubeV3::LiveChatPollItem>
Corresponds to the JSON property items
4575 4576 4577 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4575 def items @items end |
#prompt ⇒ String
Corresponds to the JSON property prompt
4580 4581 4582 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4580 def prompt @prompt end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4587 4588 4589 4590 4591 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4587 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 |