GoogleCloudRecaptchaenterpriseV1AndroidKeySettings
import type { GoogleCloudRecaptchaenterpriseV1AndroidKeySettings } from "https://googleapis.deno.dev/v1/recaptchaenterprise:v1.ts";Settings specific to keys that can be used by Android apps.
interface GoogleCloudRecaptchaenterpriseV1AndroidKeySettings {
allowAllPackageNames?: boolean;
allowedPackageNames?: string[];
supportNonGoogleAppStoreDistribution?: boolean;
}§Properties
§
allowAllPackageNames?: boolean
[src]Optional. If set to true, allowed_package_names are not enforced.
§
allowedPackageNames?: string[]
[src]Optional. Android package names of apps allowed to use the key. Example:
'com.companyname.appname' Each key supports a maximum of 250 package names.
To use a key on more apps, set allow_all_package_names to true. When this
is set, you are responsible for validating the package name by checking the
token_properties.android_package_name field in each assessment response
against your list of allowed package names.