Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest

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 ExchangeAppAttestAssertion method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest

Returns a new instance of GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest.



433
434
435
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 433

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

Instance Attribute Details

#artifactString

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.

Returns:

  • (String)


417
418
419
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 417

def artifact
  @artifact
end

#assertionString

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.

Returns:

  • (String)


424
425
426
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 424

def assertion
  @assertion
end

#challengeString

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.

Returns:

  • (String)


431
432
433
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 431

def challenge
  @challenge
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



438
439
440
441
442
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 438

def update!(**args)
  @artifact = args[:artifact] if args.key?(:artifact)
  @assertion = args[:assertion] if args.key?(:assertion)
  @challenge = args[:challenge] if args.key?(:challenge)
end