Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeRecaptchaEnterpriseTokenRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappcheck_v1beta/classes.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb

Overview

Request message for the ExchangeRecaptchaEnterpriseToken method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaExchangeRecaptchaEnterpriseTokenRequest

Returns a new instance of GoogleFirebaseAppcheckV1betaExchangeRecaptchaEnterpriseTokenRequest.



662
663
664
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 662

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#limited_useBoolean Also known as: limited_use?

Forces a short-lived token with a 5 minute TTL. Useful when the client wishes to impose stricter TTL requirements for this exchange. Default: false. Corresponds to the JSON property limitedUse

Returns:

  • (Boolean)


652
653
654
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 652

def limited_use
  @limited_use
end

#recaptcha_enterprise_tokenString

Required. The reCAPTCHA token as returned by the reCAPTCHA Enterprise JavaScript API. Corresponds to the JSON property recaptchaEnterpriseToken

Returns:

  • (String)


660
661
662
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 660

def recaptcha_enterprise_token
  @recaptcha_enterprise_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



667
668
669
670
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 667

def update!(**args)
  @limited_use = args[:limited_use] if args.key?(:limited_use)
  @recaptcha_enterprise_token = args[:recaptcha_enterprise_token] if args.key?(:recaptcha_enterprise_token)
end