class Google::Apis::AndroidpublisherV3::Bundle
Information about an app bundle. The resource for BundlesService.
Attributes
sha1[RW]
A sha1 hash of the upload 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 upload payload, encoded as a hex string and matching the output of the sha256sum command. Corresponds to the JSON property `sha256` @return [String]
version_code[RW]
The version code of the Android App Bundle
, as specified in the Android App Bundle's base module APK manifest file. Corresponds to the JSON property `versionCode` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 231 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 236 def update!(**args) @sha1 = args[:sha1] if args.key?(:sha1) @sha256 = args[:sha256] if args.key?(:sha256) @version_code = args[:version_code] if args.key?(:version_code) end