Class: Google::Apis::YoutubeV3::PlaylistStatus

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlaylistStatus

Returns a new instance of PlaylistStatus.



6746
6747
6748
# File 'lib/google/apis/youtube_v3/classes.rb', line 6746

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#podcast_statusString

The playlist's podcast status. Corresponds to the JSON property podcastStatus

Returns:

  • (String)


6739
6740
6741
# File 'lib/google/apis/youtube_v3/classes.rb', line 6739

def podcast_status
  @podcast_status
end

#privacy_statusString

The playlist's privacy status. Corresponds to the JSON property privacyStatus

Returns:

  • (String)


6744
6745
6746
# File 'lib/google/apis/youtube_v3/classes.rb', line 6744

def privacy_status
  @privacy_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6751
6752
6753
6754
# File 'lib/google/apis/youtube_v3/classes.rb', line 6751

def update!(**args)
  @podcast_status = args[:podcast_status] if args.key?(:podcast_status)
  @privacy_status = args[:privacy_status] if args.key?(:privacy_status)
end