Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest
 
 
- 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 ExchangeRecaptchaV3Token method.
Instance Attribute Summary collapse
- 
  
    
      #limited_use  ⇒ Boolean 
    
    
      (also: #limited_use?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether this attestation is for use in a limited use (
true) or * session based* (false) context. - 
  
    
      #recaptcha_v3_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest
Returns a new instance of GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest.
      780 781 782  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 780 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#limited_use ⇒ Boolean Also known as: limited_use?
Specifies whether this attestation is for use in a limited use (true) or *
session based* (false) context. To enable this attestation to be used with
the replay protection feature, set this to true. The default value is 
false.
Corresponds to the JSON property limitedUse
      771 772 773  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 771 def limited_use @limited_use end  | 
  
#recaptcha_v3_token ⇒ String
Required. The reCAPTCHA token as returned by the reCAPTCHA v3 JavaScript API.
Corresponds to the JSON property recaptchaV3Token
      778 779 780  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 778 def recaptcha_v3_token @recaptcha_v3_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      785 786 787 788  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 785 def update!(**args) @limited_use = args[:limited_use] if args.key?(:limited_use) @recaptcha_v3_token = args[:recaptcha_v3_token] if args.key?(:recaptcha_v3_token) end  |