class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest
Request message for ExchangeAppAttestAssertion
Attributes
artifact[RW]
The artifact previously returned by ExchangeAppAttestAttestation. Corresponds to the JSON property `artifact` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
assertion[RW]
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. @return [String]
challenge[RW]
A one time challenge returned by GenerateAppAttestChallenge. Corresponds to the JSON property `challenge` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 363 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 368 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