Class: Google::Apis::SearchconsoleV1::Image
- Inherits:
-
Object
- Object
- Google::Apis::SearchconsoleV1::Image
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchconsole_v1/classes.rb,
lib/google/apis/searchconsole_v1/representations.rb,
lib/google/apis/searchconsole_v1/representations.rb
Overview
Describe image data.
Instance Attribute Summary collapse
-
#data ⇒ String
Image data in format determined by the mime type.
-
#mime_type ⇒ String
The mime-type of the image data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Image
constructor
A new instance of Image.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Image
Returns a new instance of Image.
282 283 284 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 282 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ String
Image data in format determined by the mime type. Currently, the format will
always be "image/png", but this might change in the future.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
275 276 277 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 275 def data @data end |
#mime_type ⇒ String
The mime-type of the image data.
Corresponds to the JSON property mimeType
280 281 282 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 280 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
287 288 289 290 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 287 def update!(**args) @data = args[:data] if args.key?(:data) @mime_type = args[:mime_type] if args.key?(:mime_type) end |