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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CampaignData

Returns a new instance of CampaignData.



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

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



646
647
648
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 646

def campaign_source
  @campaign_source
end

#expire_timeDateTime

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:

  • (DateTime)


652
653
654
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 652

def expire_time
  @expire_time
end

#nameString

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

Returns:

  • (String)


657
658
659
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 657

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



663
664
665
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 663

def promoted_content
  @promoted_content
end

#start_timeDateTime

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:

  • (DateTime)


669
670
671
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 669

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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