Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1RiskAnalysis

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

Overview

Risk analysis result for an event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1RiskAnalysis

Returns a new instance of GoogleCloudRecaptchaenterpriseV1RiskAnalysis.



1572
1573
1574
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1572

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

Instance Attribute Details

#extended_verdict_reasonsArray<String>

Output only. Extended verdict reasons to be used for experimentation only. The set of possible reasons is subject to change. Corresponds to the JSON property extendedVerdictReasons

Returns:

  • (Array<String>)


1559
1560
1561
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1559

def extended_verdict_reasons
  @extended_verdict_reasons
end

#reasonsArray<String>

Output only. Reasons contributing to the risk analysis verdict. Corresponds to the JSON property reasons

Returns:

  • (Array<String>)


1564
1565
1566
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1564

def reasons
  @reasons
end

#scoreFloat

Output only. Legitimate event score from 0.0 to 1.0. (1.0 means very likely legitimate traffic while 0.0 means very likely non-legitimate traffic). Corresponds to the JSON property score

Returns:

  • (Float)


1570
1571
1572
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1570

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1577
1578
1579
1580
1581
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1577

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