class Google::Apis::YoutubePartnerV1::CampaignData
Attributes
The campaignSource object contains information about the assets for which the campaign will generate links. Corresponds to the JSON property `campaignSource` @return [Google::Apis::YoutubePartnerV1::CampaignSource]
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` @return [DateTime]
The user-given name of the campaign. Corresponds to the JSON property `name` @return [String]
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` @return [Array<Google::Apis::YoutubePartnerV1::PromotedContent>]
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` @return [DateTime]
Public Class Methods
# File generated/google/apis/youtube_partner_v1/classes.rb, line 633 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/youtube_partner_v1/classes.rb, line 638 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