class Google::Apis::AndroidpublisherV3::InternalAppSharingArtifact
An artifact resource which gets created when uploading an APK or Android App Bundle
through internal app sharing.
Attributes
certificate_fingerprint[RW]
The sha256 fingerprint of the certificate used to sign the generated artifact. Corresponds to the JSON property `certificateFingerprint` @return [String]
download_url[RW]
The download URL generated for the uploaded artifact. Users that are authorized to download can follow the link to the Play Store app to install it. Corresponds to the JSON property `downloadUrl` @return [String]
sha256[RW]
The sha256 hash of the artifact represented as a lowercase hexadecimal number, 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 931 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 936 def update!(**args) @certificate_fingerprint = args[:certificate_fingerprint] if args.key?(:certificate_fingerprint) @download_url = args[:download_url] if args.key?(:download_url) @sha256 = args[:sha256] if args.key?(:sha256) end