Class: Google::Apis::YoutubePartnerV1::Campaign
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::Campaign
 
- 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
- 
  
    
      #campaign_data  ⇒ Google::Apis::YoutubePartnerV1::CampaignData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The campaignData object contains details like the campaign's start and end dates, target and source. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique ID that YouTube uses to identify the campaign. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API resource. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the campaign. 
- 
  
    
      #time_created  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the campaign was created. 
- 
  
    
      #time_last_modified  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the campaign was last modified. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Campaign 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Campaign. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Campaign
Returns a new instance of Campaign
| 656 657 658 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 656 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#campaign_data ⇒ Google::Apis::YoutubePartnerV1::CampaignData
The campaignData object contains details like the campaign's start and end
dates, target and source.
Corresponds to the JSON property campaignData
| 628 629 630 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 628 def campaign_data @campaign_data end | 
#id ⇒ String
The unique ID that YouTube uses to identify the campaign.
Corresponds to the JSON property id
| 633 634 635 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 633 def id @id end | 
#kind ⇒ String
The type of the API resource. For campaign resources, this value is
youtubePartner#campaign.
Corresponds to the JSON property kind
| 639 640 641 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 639 def kind @kind end | 
#status ⇒ String
The status of the campaign.
Corresponds to the JSON property status
| 644 645 646 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 644 def status @status end | 
#time_created ⇒ DateTime
The time the campaign was created.
Corresponds to the JSON property timeCreated
| 649 650 651 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 649 def time_created @time_created end | 
#time_last_modified ⇒ DateTime
The time the campaign was last modified.
Corresponds to the JSON property timeLastModified
| 654 655 656 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 654 def time_last_modified @time_last_modified end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 661 662 663 664 665 666 667 668 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 661 def update!(**args) @campaign_data = args[:campaign_data] if args.key?(:campaign_data) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) @time_created = args[:time_created] if args.key?(:time_created) @time_last_modified = args[:time_last_modified] if args.key?(:time_last_modified) end |