class Google::Apis::AndroidpublisherV2::Image

Attributes

id[RW]

A unique id representing this image. Corresponds to the JSON property `id` @return [String]

sha1[RW]

A sha1 hash of the image that was uploaded. Corresponds to the JSON property `sha1` @return [String]

url[RW]

A URL that will serve a preview of the image. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/androidpublisher_v2/classes.rb, line 524
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/androidpublisher_v2/classes.rb, line 529
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @sha1 = args[:sha1] if args.key?(:sha1)
  @url = args[:url] if args.key?(:url)
end