class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest
Request message for ExchangeAppAttestAttestation
Attributes
The App Attest statement as returned by Apple's client-side App Attest API. This is the CBOR object returned by Apple, which will be Base64 encoded in the JSON API. Corresponds to the JSON property `attestationStatement` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
The challenge previously generated by the FAC backend. Corresponds to the JSON property `challenge` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
The key ID generated by App Attest for the client app. Corresponds to the JSON property `keyId` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 399 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 404 def update!(**args) @attestation_statement = args[:attestation_statement] if args.key?(:attestation_statement) @challenge = args[:challenge] if args.key?(:challenge) @key_id = args[:key_id] if args.key?(:key_id) end