Class: Google::Apis::RealtimebiddingV1::VideoContent
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::VideoContent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/google/apis/realtimebidding_v1/representations.rb
Overview
Video content for a creative.
Instance Attribute Summary collapse
-
#video_metadata ⇒ Google::Apis::RealtimebiddingV1::VideoMetadata
Video metadata for a creative.
-
#video_url ⇒ String
The URL to fetch a video ad.
-
#video_vast_xml ⇒ String
The contents of a VAST document for a video ad.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoContent
constructor
A new instance of VideoContent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VideoContent
Returns a new instance of VideoContent.
1729 1730 1731 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1729 def initialize(**args) update!(**args) end |
Instance Attribute Details
#video_metadata ⇒ Google::Apis::RealtimebiddingV1::VideoMetadata
Video metadata for a creative.
Corresponds to the JSON property videoMetadata
1716 1717 1718 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1716 def @video_metadata end |
#video_url ⇒ String
The URL to fetch a video ad.
Corresponds to the JSON property videoUrl
1721 1722 1723 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1721 def video_url @video_url end |
#video_vast_xml ⇒ String
The contents of a VAST document for a video ad. This document should conform
to the VAST 2.0 or 3.0 standard.
Corresponds to the JSON property videoVastXml
1727 1728 1729 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1727 def video_vast_xml @video_vast_xml end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1734 1735 1736 1737 1738 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1734 def update!(**args) @video_metadata = args[:video_metadata] if args.key?(:video_metadata) @video_url = args[:video_url] if args.key?(:video_url) @video_vast_xml = args[:video_vast_xml] if args.key?(:video_vast_xml) end |