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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WebAppIcon
Returns a new instance of WebAppIcon.
3605 3606 3607 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3605 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
3603 3604 3605 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3603 def image_data @image_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3610 3611 3612 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3610 def update!(**args) @image_data = args[:image_data] if args.key?(:image_data) end |