Class: Google::Apis::CloudsearchV1::ImageComponent
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ImageComponent
- 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
NOTE: Through future refactoring work, this image component will eventually be used in the Image widget, and will likely replace the Icon proto as well.
Instance Attribute Summary collapse
-
#alt_text ⇒ String
Corresponds to the JSON property
altText
. -
#border_style ⇒ Google::Apis::CloudsearchV1::BorderStyle
Represents a complete border style that can be applied to widgets.
-
#crop_style ⇒ Google::Apis::CloudsearchV1::ImageCropStyle
Represents a crop style that can be applied to an image.
-
#image_url ⇒ String
Corresponds to the JSON property
imageUrl
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImageComponent
constructor
A new instance of ImageComponent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImageComponent
Returns a new instance of ImageComponent.
11493 11494 11495 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11493 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alt_text ⇒ String
Corresponds to the JSON property altText
11476 11477 11478 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11476 def alt_text @alt_text end |
#border_style ⇒ Google::Apis::CloudsearchV1::BorderStyle
Represents a complete border style that can be applied to widgets.
Corresponds to the JSON property borderStyle
11481 11482 11483 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11481 def border_style @border_style end |
#crop_style ⇒ Google::Apis::CloudsearchV1::ImageCropStyle
Represents a crop style that can be applied to an image.
Corresponds to the JSON property cropStyle
11486 11487 11488 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11486 def crop_style @crop_style end |
#image_url ⇒ String
Corresponds to the JSON property imageUrl
11491 11492 11493 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11491 def image_url @image_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11498 11499 11500 11501 11502 11503 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11498 def update!(**args) @alt_text = args[:alt_text] if args.key?(:alt_text) @border_style = args[:border_style] if args.key?(:border_style) @crop_style = args[:crop_style] if args.key?(:crop_style) @image_url = args[:image_url] if args.key?(:image_url) end |