class Google::Apis::Adexchangebuyer2V2beta1::HtmlContent
HTML content for a creative.
Attributes
height[RW]
The height of the HTML snippet in pixels. Corresponds to the JSON property `height` @return [Fixnum]
snippet[RW]
The HTML snippet that displays the ad when inserted in the web page. Corresponds to the JSON property `snippet` @return [String]
width[RW]
The width of the HTML snippet in pixels. Corresponds to the JSON property `width` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1904 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1909 def update!(**args) @height = args[:height] if args.key?(:height) @snippet = args[:snippet] if args.key?(:snippet) @width = args[:width] if args.key?(:width) end