Class: Google::Apis::YoutubeV3::PlaylistStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::PlaylistStatus
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #podcast_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The playlist's podcast status.
 - 
  
    
      #privacy_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The playlist's privacy status.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PlaylistStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PlaylistStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ PlaylistStatus
Returns a new instance of PlaylistStatus.
      6560 6561 6562  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 6560 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#podcast_status ⇒ String
The playlist's podcast status.
Corresponds to the JSON property podcastStatus
      6553 6554 6555  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 6553 def podcast_status @podcast_status end  | 
  
#privacy_status ⇒ String
The playlist's privacy status.
Corresponds to the JSON property privacyStatus
      6558 6559 6560  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 6558 def privacy_status @privacy_status end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6565 6566 6567 6568  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 6565 def update!(**args) @podcast_status = args[:podcast_status] if args.key?(:podcast_status) @privacy_status = args[:privacy_status] if args.key?(:privacy_status) end  |