Class: Google::Apis::YoutubePartnerV1::CampaignList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::CampaignList
 
- 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::Campaign> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of campaigns. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API response. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CampaignList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CampaignList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CampaignList
Returns a new instance of CampaignList
| 733 734 735 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 733 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Campaign>
A list of campaigns.
Corresponds to the JSON property items
| 725 726 727 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 725 def items @items end | 
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
campaignList.
Corresponds to the JSON property kind
| 731 732 733 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 731 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 738 739 740 741 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 738 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |