Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageIcon
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteStorageIcon
- 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
Instance Attribute Summary collapse
-
#alt_text ⇒ String
The description of the icon, used for accessibility.
-
#icon_url ⇒ String
The icon specified by a URL.
-
#image_type ⇒ String
The crop style applied to the image.
-
#known_icon ⇒ String
The icon specified by the string name of a list of known icons Corresponds to the JSON property
knownIcon
. -
#material_icon ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon
A Google Font Icon, which includes over 2500+ options.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteStorageIcon
constructor
A new instance of AppsDynamiteStorageIcon.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteStorageIcon
Returns a new instance of AppsDynamiteStorageIcon.
3520 3521 3522 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3520 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alt_text ⇒ String
The description of the icon, used for accessibility. The default value is
provided if you don't specify one.
Corresponds to the JSON property altText
3493 3494 3495 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3493 def alt_text @alt_text end |
#icon_url ⇒ String
The icon specified by a URL.
Corresponds to the JSON property iconUrl
3498 3499 3500 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3498 def icon_url @icon_url end |
#image_type ⇒ String
The crop style applied to the image. In some cases, applying a CIRCLE
crop
causes the image to be drawn larger than a standard icon.
Corresponds to the JSON property imageType
3504 3505 3506 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3504 def image_type @image_type end |
#known_icon ⇒ String
The icon specified by the string name of a list of known icons
Corresponds to the JSON property knownIcon
3509 3510 3511 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3509 def known_icon @known_icon end |
#material_icon ⇒ Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon
A Google Font Icon, which includes over 2500+
options. For example, to display a check box icon with customized weight and grade, write "name":
"check_box", "fill": true, "weight": 300, "grade": -25
Corresponds to the JSON property materialIcon
3518 3519 3520 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3518 def material_icon @material_icon end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3525 3526 3527 3528 3529 3530 3531 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3525 def update!(**args) @alt_text = args[:alt_text] if args.key?(:alt_text) @icon_url = args[:icon_url] if args.key?(:icon_url) @image_type = args[:image_type] if args.key?(:image_type) @known_icon = args[:known_icon] if args.key?(:known_icon) @material_icon = args[:material_icon] if args.key?(:material_icon) end |