Class: Google::Apis::YoutubeV3::ChannelContentOwnerDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::ChannelContentOwnerDetails
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/google/apis/youtube_v3/representations.rb
Overview
The contentOwnerDetails object encapsulates channel data that is relevant for YouTube Partners linked with the channel.
Instance Attribute Summary collapse
- 
  
    
      #content_owner  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the content owner linked to the channel. 
- 
  
    
      #time_linked  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time of when the channel was linked to the content owner. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChannelContentOwnerDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ChannelContentOwnerDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelContentOwnerDetails
Returns a new instance of ChannelContentOwnerDetails
| 1186 1187 1188 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1186 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#content_owner ⇒ String
The ID of the content owner linked to the channel.
Corresponds to the JSON property contentOwner
| 1178 1179 1180 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1178 def content_owner @content_owner end | 
#time_linked ⇒ DateTime
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
| 1184 1185 1186 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1184 def time_linked @time_linked end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1191 1192 1193 1194 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1191 def update!(**args) @content_owner = args[:content_owner] if args.key?(:content_owner) @time_linked = args[:time_linked] if args.key?(:time_linked) end |