Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1GenerateAppAttestChallengeResponse

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

Response message for the GenerateAppAttestChallenge method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppcheckV1GenerateAppAttestChallengeResponse

Returns a new instance of GoogleFirebaseAppcheckV1GenerateAppAttestChallengeResponse.



712
713
714
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 712

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

Instance Attribute Details

#challengeString

A one-time use challenge for the client to pass to the App Attest API. Corresponds to the JSON property challenge NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


703
704
705
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 703

def challenge
  @challenge
end

#ttlString

The duration from the time this challenge is minted until its expiration. This field is intended to ease client-side token management, since the client may have clock skew, but is still able to accurately measure a duration. Corresponds to the JSON property ttl

Returns:

  • (String)


710
711
712
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 710

def ttl
  @ttl
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



717
718
719
720
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 717

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