Class: Google::Apis::CustomsearchV1::Promotion
- Inherits:
-
Object
- Object
- Google::Apis::CustomsearchV1::Promotion
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/customsearch_v1/classes.rb,
lib/google/apis/customsearch_v1/representations.rb,
lib/google/apis/customsearch_v1/representations.rb
Overview
Promotion result.
Defined Under Namespace
Instance Attribute Summary collapse
-
#body_lines ⇒ Array<Google::Apis::CustomsearchV1::Promotion::BodyLine>
An array of block objects for this promotion.
-
#display_link ⇒ String
An abridged version of this search's result URL, e.g.
-
#html_title ⇒ String
The title of the promotion, in HTML.
-
#image ⇒ Google::Apis::CustomsearchV1::Promotion::Image
Image belonging to a promotion.
-
#link ⇒ String
The URL of the promotion.
-
#title ⇒ String
The title of the promotion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Promotion
constructor
A new instance of Promotion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Promotion
Returns a new instance of Promotion.
59 60 61 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 59 def initialize(**args) update!(**args) end |
Instance Attribute Details
#body_lines ⇒ Array<Google::Apis::CustomsearchV1::Promotion::BodyLine>
An array of block objects for this promotion.
Corresponds to the JSON property bodyLines
32 33 34 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 32 def body_lines @body_lines end |
#display_link ⇒ String
An abridged version of this search's result URL, e.g. www.example.com.
Corresponds to the JSON property displayLink
37 38 39 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 37 def display_link @display_link end |
#html_title ⇒ String
The title of the promotion, in HTML.
Corresponds to the JSON property htmlTitle
42 43 44 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 42 def html_title @html_title end |
#image ⇒ Google::Apis::CustomsearchV1::Promotion::Image
Image belonging to a promotion.
Corresponds to the JSON property image
47 48 49 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 47 def image @image end |
#link ⇒ String
The URL of the promotion.
Corresponds to the JSON property link
52 53 54 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 52 def link @link end |
#title ⇒ String
The title of the promotion.
Corresponds to the JSON property title
57 58 59 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 57 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
64 65 66 67 68 69 70 71 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 64 def update!(**args) @body_lines = args[:body_lines] if args.key?(:body_lines) @display_link = args[:display_link] if args.key?(:display_link) @html_title = args[:html_title] if args.key?(:html_title) @image = args[:image] if args.key?(:image) @link = args[:link] if args.key?(:link) @title = args[:title] if args.key?(:title) end |