Class: Google::Apis::AndroidmanagementV1::WebAppIcon

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb

Overview

An icon for a web app. Supported formats are: png, jpg and webp.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WebAppIcon

Returns a new instance of WebAppIcon.



3452
3453
3454
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3452

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

Instance Attribute Details

#image_dataString

The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 "Base 64 Encoding with URL and Filename Safe Alphabet").

  • The image type can be png or jpg.
  • The image should ideally be square.
  • The image should ideally have a size of 512x512.
Corresponds to the JSON property imageData

Returns:

  • (String)


3450
3451
3452
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3450

def image_data
  @image_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3457
3458
3459
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3457

def update!(**args)
  @image_data = args[:image_data] if args.key?(:image_data)
end