class Google::Apis::YoutubeV3::ChannelContentOwnerDetails

The contentOwnerDetails object encapsulates channel data that is relevant for YouTube Partners linked with the channel.

Attributes

content_owner[RW]

The ID of the content owner linked to the channel. Corresponds to the JSON property `contentOwner` @return [String]

time_linked[RW]

The date and time when the channel was linked to the content owner. Corresponds to the JSON property `timeLinked` @return [DateTime]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 1223
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_v3/classes.rb, line 1228
def update!(**args)
  @content_owner = args[:content_owner] if args.key?(:content_owner)
  @time_linked = args[:time_linked] if args.key?(:time_linked)
end