Class: Google::Apis::YoutubePartnerV1::CampaignData

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) ⇒ CampaignData

Returns a new instance of CampaignData.



679
680
681
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 679

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

Instance Attribute Details

#campaign_sourceGoogle::Apis::YoutubePartnerV1::CampaignSource

The campaignSource object contains information about the assets for which the campaign will generate links. Corresponds to the JSON property campaignSource



654
655
656
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 654

def campaign_source
  @campaign_source
end

#expire_timeString

The time at which the campaign should expire. Do not specify a value if the campaign has no expiration time. Corresponds to the JSON property expireTime

Returns:

  • (String)


660
661
662
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 660

def expire_time
  @expire_time
end

#nameString

The user-given name of the campaign. Corresponds to the JSON property name

Returns:

  • (String)


665
666
667
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 665

def name
  @name
end

A list of videos or channels that will be linked to from claimed videos that are included in the campaign. Corresponds to the JSON property promotedContent



671
672
673
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 671

def promoted_content
  @promoted_content
end

#start_timeString

The time at which the campaign should start. Do not specify a value if the campaign should start immediately. Corresponds to the JSON property startTime

Returns:

  • (String)


677
678
679
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 677

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



684
685
686
687
688
689
690
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 684

def update!(**args)
  @campaign_source = args[:campaign_source] if args.key?(:campaign_source)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @name = args[:name] if args.key?(:name)
  @promoted_content = args[:promoted_content] if args.key?(:promoted_content)
  @start_time = args[:start_time] if args.key?(:start_time)
end