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
| 4586 4587 4588 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4586 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
Corresponds to the JSON property id
| 4574 4575 4576 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4574 def id @id end | 
#items ⇒ Array<Google::Apis::YoutubeV3::LiveChatPollItem>
Corresponds to the JSON property items
| 4579 4580 4581 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4579 def items @items end | 
#prompt ⇒ String
Corresponds to the JSON property prompt
| 4584 4585 4586 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4584 def prompt @prompt end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4591 4592 4593 4594 4595 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4591 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 |