class Google::Apis::YoutubePartnerV1::ShowDetails
Attributes
episode_number[RW]
The episode number associated with the episode. Corresponds to the JSON property `episodeNumber` @return [String]
episode_title[RW]
The episode's title. Corresponds to the JSON property `episodeTitle` @return [String]
season_number[RW]
The season number associated with the episode. Corresponds to the JSON property `seasonNumber` @return [String]
title[RW]
The show's title Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_partner_v1/classes.rb, line 3322 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/youtube_partner_v1/classes.rb, line 3327 def update!(**args) @episode_number = args[:episode_number] if args.key?(:episode_number) @episode_title = args[:episode_title] if args.key?(:episode_title) @season_number = args[:season_number] if args.key?(:season_number) @title = args[:title] if args.key?(:title) end