Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo
- Inherits:
-
Object
- Object
- Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo
- 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
Details about the transaction from the gateway.
Instance Attribute Summary collapse
-
#avs_response_code ⇒ String
AVS response code from the gateway (available only when reCAPTCHA Enterprise is called after authorization).
-
#cvv_response_code ⇒ String
CVV response code from the gateway (available only when reCAPTCHA Enterprise is called after authorization).
-
#gateway_response_code ⇒ String
Gateway response code describing the state of the transaction.
-
#name ⇒ String
Name of the gateway service (for example, stripe, square, paypal).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo
constructor
A new instance of GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo
Returns a new instance of GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.
1553 1554 1555 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1553 def initialize(**args) update!(**args) end |
Instance Attribute Details
#avs_response_code ⇒ String
AVS response code from the gateway (available only when reCAPTCHA Enterprise
is called after authorization).
Corresponds to the JSON property avsResponseCode
1535 1536 1537 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1535 def avs_response_code @avs_response_code end |
#cvv_response_code ⇒ String
CVV response code from the gateway (available only when reCAPTCHA Enterprise
is called after authorization).
Corresponds to the JSON property cvvResponseCode
1541 1542 1543 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1541 def cvv_response_code @cvv_response_code end |
#gateway_response_code ⇒ String
Gateway response code describing the state of the transaction.
Corresponds to the JSON property gatewayResponseCode
1546 1547 1548 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1546 def gateway_response_code @gateway_response_code end |
#name ⇒ String
Name of the gateway service (for example, stripe, square, paypal).
Corresponds to the JSON property name
1551 1552 1553 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1551 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1558 1559 1560 1561 1562 1563 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1558 def update!(**args) @avs_response_code = args[:avs_response_code] if args.key?(:avs_response_code) @cvv_response_code = args[:cvv_response_code] if args.key?(:cvv_response_code) @gateway_response_code = args[:gateway_response_code] if args.key?(:gateway_response_code) @name = args[:name] if args.key?(:name) end |