class Google::Apis::DigitalassetlinksV1::AndroidAppAsset
Describes an android app asset.
Attributes
certificate[RW]
Describes an X509 certificate. Corresponds to the JSON property `certificate` @return [Google::Apis::DigitalassetlinksV1::CertificateInfo]
package_name[RW]
Android App assets are naturally identified by their Java package name. For example, the Google
Maps app uses the package name `com.google.android.apps. maps`. REQUIRED Corresponds to the JSON property `packageName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/digitalassetlinks_v1/classes.rb, line 41 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/digitalassetlinks_v1/classes.rb, line 46 def update!(**args) @certificate = args[:certificate] if args.key?(:certificate) @package_name = args[:package_name] if args.key?(:package_name) end