Class: Google::Apis::AndroidpublisherV3::Image

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Image

Returns a new instance of Image.



1559
1560
1561
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1559

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

Instance Attribute Details

#idString

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

Returns:

  • (String)


1542
1543
1544
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1542

def id
  @id
end

#sha1String

A sha1 hash of the image. Corresponds to the JSON property sha1

Returns:

  • (String)


1547
1548
1549
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1547

def sha1
  @sha1
end

#sha256String

A sha256 hash of the image. Corresponds to the JSON property sha256

Returns:

  • (String)


1552
1553
1554
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1552

def sha256
  @sha256
end

#urlString

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

Returns:

  • (String)


1557
1558
1559
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1557

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1564
1565
1566
1567
1568
1569
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1564

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