Class: Google::Apis::CloudsearchV1::ImageKeyValue
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ImageKeyValue
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
This is deprecated and please use KeyValue.
Instance Attribute Summary collapse
-
#icon ⇒ String
Corresponds to the JSON property
icon
. -
#icon_url ⇒ String
Corresponds to the JSON property
iconUrl
. -
#on_click ⇒ Google::Apis::CloudsearchV1::OnClick
Corresponds to the JSON property
onClick
. -
#text ⇒ String
Corresponds to the JSON property
text
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImageKeyValue
constructor
A new instance of ImageKeyValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImageKeyValue
Returns a new instance of ImageKeyValue.
11555 11556 11557 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11555 def initialize(**args) update!(**args) end |
Instance Attribute Details
#icon ⇒ String
Corresponds to the JSON property icon
11538 11539 11540 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11538 def icon @icon end |
#icon_url ⇒ String
Corresponds to the JSON property iconUrl
11543 11544 11545 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11543 def icon_url @icon_url end |
#on_click ⇒ Google::Apis::CloudsearchV1::OnClick
Corresponds to the JSON property onClick
11548 11549 11550 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11548 def on_click @on_click end |
#text ⇒ String
Corresponds to the JSON property text
11553 11554 11555 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11553 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11560 11561 11562 11563 11564 11565 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11560 def update!(**args) @icon = args[:icon] if args.key?(:icon) @icon_url = args[:icon_url] if args.key?(:icon_url) @on_click = args[:on_click] if args.key?(:on_click) @text = args[:text] if args.key?(:text) end |