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 of when the channel was linked to the content owner. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format. Corresponds to the JSON property `timeLinked` @return [DateTime]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 1182
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_v3/classes.rb, line 1187
def update!(**args)
  @content_owner = args[:content_owner] if args.key?(:content_owner)
  @time_linked = args[:time_linked] if args.key?(:time_linked)
end