Class: Google::Apis::AndroidmanagementV1::WebAppIcon
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::WebAppIcon
- 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
-
#image_data ⇒ String
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").
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebAppIcon
constructor
A new instance of WebAppIcon.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WebAppIcon
Returns a new instance of WebAppIcon.
3674 3675 3676 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_data ⇒ String
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
3672 3673 3674 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3672 def image_data @image_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3679 3680 3681 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3679 def update!(**args) @image_data = args[:image_data] if args.key?(:image_data) end |