Class: Google::Apis::VerifiedaccessV2::Challenge

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/verifiedaccess_v2/classes.rb,
lib/google/apis/verifiedaccess_v2/representations.rb,
lib/google/apis/verifiedaccess_v2/representations.rb

Overview

Result message for VerifiedAccess.GenerateChallenge.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Challenge

Returns a new instance of Challenge.



35
36
37
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 35

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

Instance Attribute Details

#challengeString

Generated challenge, the bytes representation of SignedData. Corresponds to the JSON property challenge NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


33
34
35
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 33

def challenge
  @challenge
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



40
41
42
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 40

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