Class: Google::Apis::YoutubePartnerV1::OwnershipHistoryListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubePartnerV1::OwnershipHistoryListResponse
 
 
- 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
- 
  
    
      #items  ⇒ Array<Google::Apis::YoutubePartnerV1::RightsOwnershipHistory> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of ownership history (youtubePartner#ownershipHistory) resources that match the request criteria.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the API response.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OwnershipHistoryListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OwnershipHistoryListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OwnershipHistoryListResponse
Returns a new instance of OwnershipHistoryListResponse
      2601 2602 2603  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2601 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::RightsOwnershipHistory>
A list of ownership history (youtubePartner#ownershipHistory) resources that
match the request criteria.
Corresponds to the JSON property items
      2593 2594 2595  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2593 def items @items end  | 
  
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
ownershipHistoryList.
Corresponds to the JSON property kind
      2599 2600 2601  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2599 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2606 2607 2608 2609  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2606 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |