Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ExchangeAppAttestAssertionRequest

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

Overview

Request message for the ExchangeAppAttestAssertion method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1ExchangeAppAttestAssertionRequest

Returns a new instance of GoogleFirebaseAppcheckV1ExchangeAppAttestAssertionRequest.



393
394
395
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 393

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)


368
369
370
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 368

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)


375
376
377
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 375

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)


382
383
384
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 382

def challenge
  @challenge
end

#limited_useBoolean 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

Returns:

  • (Boolean)


390
391
392
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 390

def limited_use
  @limited_use
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



398
399
400
401
402
403
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 398

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