class Google::Apis::AndroidpublisherV3::ApkBinary

Represents the binary payload of an APK.

Attributes

sha1[RW]

A sha1 hash of the APK payload, encoded as a hex string and matching the output of the sha1sum command. Corresponds to the JSON property `sha1` @return [String]

sha256[RW]

A sha256 hash of the APK payload, encoded as a hex string and matching the output of the sha256sum command. Corresponds to the JSON property `sha256` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidpublisher_v3/classes.rb, line 71
def update!(**args)
  @sha1 = args[:sha1] if args.key?(:sha1)
  @sha256 = args[:sha256] if args.key?(:sha256)
end