Class: Google::Apis::YoutubePartnerV1::CampaignData
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::CampaignData
- 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_source ⇒ Google::Apis::YoutubePartnerV1::CampaignSource
The campaignSource object contains information about the assets for which the campaign will generate links.
-
#expire_time ⇒ String
The time at which the campaign should expire.
-
#name ⇒ String
The user-given name of the campaign.
-
#promoted_content ⇒ Array<Google::Apis::YoutubePartnerV1::PromotedContent>
A list of videos or channels that will be linked to from claimed videos that are included in the campaign.
-
#start_time ⇒ String
The time at which the campaign should start.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CampaignData
constructor
A new instance of CampaignData.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_source ⇒ Google::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_time ⇒ String
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
660 661 662 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 660 def expire_time @expire_time end |
#name ⇒ String
The user-given name of the campaign.
Corresponds to the JSON property name
665 666 667 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 665 def name @name end |
#promoted_content ⇒ Array<Google::Apis::YoutubePartnerV1::PromotedContent>
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_time ⇒ String
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
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 |