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 ExchangeAppAttestAssertion
Instance Attribute Summary collapse
-
#artifact ⇒ String
The artifact previously returned by ExchangeAppAttestAttestation.
-
#assertion ⇒ String
The CBOR encoded assertion provided by the Apple App Attest SDK.
-
#challenge ⇒ String
A one time challenge returned by GenerateAppAttestChallenge.
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.
283 284 285 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 283 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact ⇒ String
The artifact previously returned by ExchangeAppAttestAttestation.
Corresponds to the JSON property artifact
NOTE: Values are automatically base64 encoded/decoded in the client library.
269 270 271 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 269 def artifact @artifact end |
#assertion ⇒ String
The CBOR encoded assertion provided by the Apple App Attest SDK.
Corresponds to the JSON property assertion
NOTE: Values are automatically base64 encoded/decoded in the client library.
275 276 277 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 275 def assertion @assertion end |
#challenge ⇒ String
A one time challenge returned by GenerateAppAttestChallenge.
Corresponds to the JSON property challenge
NOTE: Values are automatically base64 encoded/decoded in the client library.
281 282 283 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 281 def challenge @challenge end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
288 289 290 291 292 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 288 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 |