Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageIcon

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteStorageIcon

Returns a new instance of AppsDynamiteStorageIcon.



3300
3301
3302
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3300

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

Instance Attribute Details

#alt_textString

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

Returns:

  • (String)


3282
3283
3284
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3282

def alt_text
  @alt_text
end

#icon_urlString

The icon specified by a URL. Corresponds to the JSON property iconUrl

Returns:

  • (String)


3287
3288
3289
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3287

def icon_url
  @icon_url
end

#image_typeString

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

Returns:

  • (String)


3293
3294
3295
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3293

def image_type
  @image_type
end

#known_iconString

The icon specified by the string name of a list of known icons Corresponds to the JSON property knownIcon

Returns:

  • (String)


3298
3299
3300
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3298

def known_icon
  @known_icon
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3305
3306
3307
3308
3309
3310
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3305

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)
end