class Google::Apis::VerifiedaccessV1::VerifyChallengeResponseRequest
signed ChallengeResponse
Attributes
challenge_response[RW]
The wrapper message of any data and its signature. Corresponds to the JSON property `challengeResponse` @return [Google::Apis::VerifiedaccessV1::SignedData]
expected_identity[RW]
Service can optionally provide identity information about the device or user associated with the key. For an EMK, this value is the enrolled domain. For an EUK, this value is the user's email address. If present, this value will be checked against contents of the response, and verification will fail if there is no match. Corresponds to the JSON property `expectedIdentity` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/verifiedaccess_v1/classes.rb, line 112 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/verifiedaccess_v1/classes.rb, line 117 def update!(**args) @challenge_response = args[:challenge_response] if args.key?(:challenge_response) @expected_identity = args[:expected_identity] if args.key?(:expected_identity) end