Class: Google::Apis::YoutubePartnerV1::RightsOwnership

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RightsOwnership

Returns a new instance of RightsOwnership.



3647
3648
3649
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3647

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#generalArray<Google::Apis::YoutubePartnerV1::TerritoryOwners>

A list that identifies the owners of an asset and the territories where each owner has ownership. General asset ownership is used for all types of assets and is the only type of ownership data that can be provided for assets that are not compositions. Note: You cannot specify general ownership rights and also specify either mechanical, performance, or synchronization rights. Corresponds to the JSON property general



3622
3623
3624
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3622

def general
  @general
end

#kindString

The type of the API resource. For rightsOwnership resources, the value is youtubePartner#rightsOwnership. Corresponds to the JSON property kind

Returns:

  • (String)


3628
3629
3630
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3628

def kind
  @kind
end

#mechanicalArray<Google::Apis::YoutubePartnerV1::TerritoryOwners>

A list that identifies owners of the mechanical rights for a composition asset. Corresponds to the JSON property mechanical



3633
3634
3635
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3633

def mechanical
  @mechanical
end

#performanceArray<Google::Apis::YoutubePartnerV1::TerritoryOwners>

A list that identifies owners of the performance rights for a composition asset. Corresponds to the JSON property performance



3639
3640
3641
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3639

def performance
  @performance
end

#synchronizationArray<Google::Apis::YoutubePartnerV1::TerritoryOwners>

A list that identifies owners of the synchronization rights for a composition asset. Corresponds to the JSON property synchronization



3645
3646
3647
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3645

def synchronization
  @synchronization
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3652
3653
3654
3655
3656
3657
3658
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3652

def update!(**args)
  @general = args[:general] if args.key?(:general)
  @kind = args[:kind] if args.key?(:kind)
  @mechanical = args[:mechanical] if args.key?(:mechanical)
  @performance = args[:performance] if args.key?(:performance)
  @synchronization = args[:synchronization] if args.key?(:synchronization)
end