Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest
 
 
- 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 ExchangeAppAttestAssertion method.
Instance Attribute Summary collapse
- 
  
    
      #artifact  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #assertion  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #challenge  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #limited_use  ⇒ Boolean 
    
    
      (also: #limited_use?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether this attestation is for use in a limited use (
true) or * session based* (false) context. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest
Returns a new instance of GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest.
      495 496 497  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 495 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#artifact ⇒ String
Required. The artifact returned by a previous call to
ExchangeAppAttestAttestation.
Corresponds to the JSON property artifact
NOTE: Values are automatically base64 encoded/decoded in the client library.
      470 471 472  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 470 def artifact @artifact end  | 
  
#assertion ⇒ String
Required. The CBOR-encoded assertion returned by the client-side App Attest
API.
Corresponds to the JSON property assertion
NOTE: Values are automatically base64 encoded/decoded in the client library.
      477 478 479  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 477 def assertion @assertion end  | 
  
#challenge ⇒ String
Required. A one-time challenge returned by an immediately prior call to
GenerateAppAttestChallenge.
Corresponds to the JSON property challenge
NOTE: Values are automatically base64 encoded/decoded in the client library.
      484 485 486  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 484 def challenge @challenge end  | 
  
#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
      492 493 494  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 492 def limited_use @limited_use end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      500 501 502 503 504 505  | 
    
      # File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 500 def update!(**args) @artifact = args[:artifact] if args.key?(:artifact) @assertion = args[:assertion] if args.key?(:assertion) @challenge = args[:challenge] if args.key?(:challenge) @limited_use = args[:limited_use] if args.key?(:limited_use) end  |