Class: Google::Apis::YoutubeV3::PromotedItem

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb

Overview

Describes a single promoted item.

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

Returns a new instance of PromotedItem.



6303
6304
6305
# File 'generated/google/apis/youtube_v3/classes.rb', line 6303

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

Instance Attribute Details

#custom_messageString

A custom message to display for this promotion. This field is currently ignored unless the promoted item is a website. Corresponds to the JSON property customMessage

Returns:

  • (String)


6283
6284
6285
# File 'generated/google/apis/youtube_v3/classes.rb', line 6283

def custom_message
  @custom_message
end

#idGoogle::Apis::YoutubeV3::PromotedItemId

Describes a single promoted item id. It is a union of various possible types. Corresponds to the JSON property id



6288
6289
6290
# File 'generated/google/apis/youtube_v3/classes.rb', line 6288

def id
  @id
end

If true, the content owner's name will be used when displaying the promotion. This field can only be set when the update is made on behalf of the content owner. Corresponds to the JSON property promotedByContentOwner

Returns:

  • (Boolean)


6295
6296
6297
# File 'generated/google/apis/youtube_v3/classes.rb', line 6295

def promoted_by_content_owner
  @promoted_by_content_owner
end

#timingGoogle::Apis::YoutubeV3::InvideoTiming

Describes a temporal position of a visual widget inside a video. Corresponds to the JSON property timing



6301
6302
6303
# File 'generated/google/apis/youtube_v3/classes.rb', line 6301

def timing
  @timing
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6308
6309
6310
6311
6312
6313
# File 'generated/google/apis/youtube_v3/classes.rb', line 6308

def update!(**args)
  @custom_message = args[:custom_message] if args.key?(:custom_message)
  @id = args[:id] if args.key?(:id)
  @promoted_by_content_owner = args[:promoted_by_content_owner] if args.key?(:promoted_by_content_owner)
  @timing = args[:timing] if args.key?(:timing)
end