Class: Yt::Models::ContentOwner

Inherits:
Account
  • Object
show all
Defined in:
lib/yt/models/content_owner.rb

Overview

Provides methods to interact with YouTube CMS accounts.

Instance Attribute Summary collapse

Attributes inherited from Account

#channel, #content_owners, #email, #family_name, #given_name, #id, #name, #owner_name, #playlists, #related_playlists, #subscribed_channels, #subscribers, #videos

Instance Method Summary collapse

Methods inherited from Account

#avatar_url, #create_playlist, #delete_playlists, #gender, #has_verified_email?, #hd, #locale, #profile_url, #upload_video

Constructor Details

#initialize(options = {}) ⇒ ContentOwner

Returns a new instance of ContentOwner.



38
39
40
41
42
# File 'lib/yt/models/content_owner.rb', line 38

def initialize(options = {})
  super options
  @owner_name = options[:owner_name]
  @display_name = options[:display_name]
end

Instance Attribute Details

#assetsYt::Collection::Assets (readonly)

Returns the assets administered by the content owner.

Returns:

  • (Yt::Collection::Assets)

    the assets administered by the content owner.



20
# File 'lib/yt/models/content_owner.rb', line 20

has_many :assets

#claimsYt::Collections::Claims (readonly)

Returns the claims administered by the content owner.

Returns:



16
# File 'lib/yt/models/content_owner.rb', line 16

has_many :claims

#display_nameString (readonly)

Returns The display name of the content owner.

Returns:

  • (String)

    The display name of the content owner.



31
32
33
# File 'lib/yt/models/content_owner.rb', line 31

def display_name
  @display_name
end

#partnered_channelsYt::Collections::PartneredChannels (readonly)

Returns the channels managed by the CMS account.

Returns:



12
# File 'lib/yt/models/content_owner.rb', line 12

has_many :partnered_channels

#policiesYt::Collections::Policies (readonly)

Returns the policies saved by the content owner.

Returns:



28
# File 'lib/yt/models/content_owner.rb', line 28

has_many :policies

#referencesYt::Collections::References (readonly)

Returns the references administered by the content owner.

Returns:



24
# File 'lib/yt/models/content_owner.rb', line 24

has_many :references

#video_groupsYt::Collections::VideoGroups (readonly)

Returns the video-groups managed by the content owner.

Returns:

  • (Yt::Collections::VideoGroups)

    the video-groups managed by the content owner.



36
# File 'lib/yt/models/content_owner.rb', line 36

has_many :video_groups

Instance Method Details

#create_asset(params = {}) ⇒ Object



48
49
50
# File 'lib/yt/models/content_owner.rb', line 48

def create_asset(params = {})
  assets.insert params
end

#create_claim(params = {}) ⇒ Object



52
53
54
# File 'lib/yt/models/content_owner.rb', line 52

def create_claim(params = {})
  claims.insert params
end

#create_reference(params = {}) ⇒ Object



44
45
46
# File 'lib/yt/models/content_owner.rb', line 44

def create_reference(params = {})
  references.insert params
end