class Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings
Settings specific to keys that can be used by iOS apps.
Attributes
allow_all_bundle_ids[RW]
If set to true, it means allowed_bundle_ids
will not be enforced. Corresponds to the JSON property `allowAllBundleIds` @return [Boolean]
allow_all_bundle_ids?[RW]
If set to true, it means allowed_bundle_ids
will not be enforced. Corresponds to the JSON property `allowAllBundleIds` @return [Boolean]
allowed_bundle_ids[RW]
iOS bundle ids of apps allowed to use the key. Example: 'com.companyname. productname.appname' Corresponds to the JSON property `allowedBundleIds` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/recaptchaenterprise_v1/classes.rb, line 236 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 241 def update!(**args) @allow_all_bundle_ids = args[:allow_all_bundle_ids] if args.key?(:allow_all_bundle_ids) @allowed_bundle_ids = args[:allowed_bundle_ids] if args.key?(:allowed_bundle_ids) end