Class: Google::Apis::CustomsearchV1::Promotion

Inherits:
Object
  • Object
show all
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

Classes: BodyLine, Image

Instance Attribute Summary collapse

Instance Method Summary collapse

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_linesArray<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

An abridged version of this search's result URL, e.g. www.example.com. Corresponds to the JSON property displayLink

Returns:

  • (String)


37
38
39
# File 'lib/google/apis/customsearch_v1/classes.rb', line 37

def display_link
  @display_link
end

#html_titleString

The title of the promotion, in HTML. Corresponds to the JSON property htmlTitle

Returns:

  • (String)


42
43
44
# File 'lib/google/apis/customsearch_v1/classes.rb', line 42

def html_title
  @html_title
end

#imageGoogle::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

The URL of the promotion. Corresponds to the JSON property link

Returns:

  • (String)


52
53
54
# File 'lib/google/apis/customsearch_v1/classes.rb', line 52

def link
  @link
end

#titleString

The title of the promotion. Corresponds to the JSON property title

Returns:

  • (String)


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