Class: Google::Apis::AndroidpublisherV2::Image

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

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) ⇒ Image

Returns a new instance of Image.



574
575
576
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 574

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

Instance Attribute Details

#idString

A unique id representing this image. Corresponds to the JSON property id

Returns:

  • (String)


562
563
564
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 562

def id
  @id
end

#sha1String

A sha1 hash of the image that was uploaded. Corresponds to the JSON property sha1

Returns:

  • (String)


567
568
569
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 567

def sha1
  @sha1
end

#urlString

A URL that will serve a preview of the image. Corresponds to the JSON property url

Returns:

  • (String)


572
573
574
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 572

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



579
580
581
582
583
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 579

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