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.



612
613
614
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 612

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

Instance Attribute Details

#idString

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

Returns:

  • (String)


600
601
602
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 600

def id
  @id
end

#sha1String

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

Returns:

  • (String)


605
606
607
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 605

def sha1
  @sha1
end

#urlString

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

Returns:

  • (String)


610
611
612
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 610

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



617
618
619
620
621
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 617

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