Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest
 
 
- 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 VerifyAppCheckToken method.
Instance Attribute Summary collapse
- 
  
    
      #app_check_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest
Returns a new instance of GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest.
      1441 1442 1443  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1441 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#app_check_token ⇒ String
Required. The App Check token to verify. App Check tokens exchanged from the
SafetyNet provider are not supported; an HTTP 400 error will be returned.
Corresponds to the JSON property appCheckToken
      1439 1440 1441  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1439 def app_check_token @app_check_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1446 1447 1448  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1446 def update!(**args) @app_check_token = args[:app_check_token] if args.key?(:app_check_token) end  |