Class: Google::Apis::AndroidpublisherV3::Image
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Image
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
An uploaded image. The resource for ImagesService.
Instance Attribute Summary collapse
-
#id ⇒ String
A unique id representing this image.
-
#sha1 ⇒ String
A sha1 hash of the image.
-
#sha256 ⇒ String
A sha256 hash of the image.
-
#url ⇒ String
A URL that will serve a preview of the image.
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.
2794 2795 2796 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2794 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
A unique id representing this image.
Corresponds to the JSON property id
2777 2778 2779 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2777 def id @id end |
#sha1 ⇒ String
A sha1 hash of the image.
Corresponds to the JSON property sha1
2782 2783 2784 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2782 def sha1 @sha1 end |
#sha256 ⇒ String
A sha256 hash of the image.
Corresponds to the JSON property sha256
2787 2788 2789 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2787 def sha256 @sha256 end |
#url ⇒ String
A URL that will serve a preview of the image.
Corresponds to the JSON property url
2792 2793 2794 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2792 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2799 2800 2801 2802 2803 2804 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2799 def update!(**args) @id = args[:id] if args.key?(:id) @sha1 = args[:sha1] if args.key?(:sha1) @sha256 = args[:sha256] if args.key?(:sha256) @url = args[:url] if args.key?(:url) end |