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

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

Defined Under Namespace

Classes: BodyLine, Image

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Promotion

Returns a new instance of Promotion.



115
116
117
# File 'generated/google/apis/customsearch_v1/classes.rb', line 115

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

Instance Attribute Details

#body_linesArray<Google::Apis::CustomsearchV1::Promotion::BodyLine>

Corresponds to the JSON property bodyLines



88
89
90
# File 'generated/google/apis/customsearch_v1/classes.rb', line 88

def body_lines
  @body_lines
end

Corresponds to the JSON property displayLink

Returns:

  • (String)


93
94
95
# File 'generated/google/apis/customsearch_v1/classes.rb', line 93

def display_link
  @display_link
end

#html_titleString

Corresponds to the JSON property htmlTitle

Returns:

  • (String)


98
99
100
# File 'generated/google/apis/customsearch_v1/classes.rb', line 98

def html_title
  @html_title
end

#imageGoogle::Apis::CustomsearchV1::Promotion::Image

Corresponds to the JSON property image



103
104
105
# File 'generated/google/apis/customsearch_v1/classes.rb', line 103

def image
  @image
end

Corresponds to the JSON property link

Returns:

  • (String)


108
109
110
# File 'generated/google/apis/customsearch_v1/classes.rb', line 108

def link
  @link
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


113
114
115
# File 'generated/google/apis/customsearch_v1/classes.rb', line 113

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



120
121
122
123
124
125
126
127
# File 'generated/google/apis/customsearch_v1/classes.rb', line 120

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