Class: Google::Apis::SearchconsoleV1::Image

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

Instance Method Summary collapse

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

#dataString

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.

Returns:

  • (String)


275
276
277
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 275

def data
  @data
end

#mime_typeString

The mime-type of the image data. Corresponds to the JSON property mimeType

Returns:

  • (String)


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