class Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AndroidKeySettings

Settings specific to keys that can be used by Android apps.

Attributes

allow_all_package_names[RW]

If set to true, it means allowed_package_names will not be enforced. Corresponds to the JSON property `allowAllPackageNames` @return [Boolean]

allow_all_package_names?[RW]

If set to true, it means allowed_package_names will not be enforced. Corresponds to the JSON property `allowAllPackageNames` @return [Boolean]

allowed_package_names[RW]

Android package names of apps allowed to use the key. Example: 'com. companyname.appname' Corresponds to the JSON property `allowedPackageNames` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/recaptchaenterprise_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/recaptchaenterprise_v1/classes.rb, line 46
def update!(**args)
  @allow_all_package_names = args[:allow_all_package_names] if args.key?(:allow_all_package_names)
  @allowed_package_names = args[:allowed_package_names] if args.key?(:allowed_package_names)
end