class Google::Apis::ApikeysV2::V2AndroidApplication

Identifier of an Android application for key use.

Attributes

package_name[RW]

The package name of the application. Corresponds to the JSON property `packageName` @return [String]

sha1_fingerprint[RW]

The SHA1 fingerprint of the application. For example, both sha1 formats are acceptable : DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09 or DA39A3EE5E6B4B0D3255BFEF95601890AFD80709. Output format is the latter. Corresponds to the JSON property `sha1Fingerprint` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apikeys_v2/classes.rb, line 147
def update!(**args)
  @package_name = args[:package_name] if args.key?(:package_name)
  @sha1_fingerprint = args[:sha1_fingerprint] if args.key?(:sha1_fingerprint)
end