Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo

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

Details about the transaction from the gateway.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo

Returns a new instance of GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.



1829
1830
1831
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1829

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

Instance Attribute Details

#avs_response_codeString

Optional. AVS response code from the gateway (available only when reCAPTCHA Enterprise is called after authorization). Corresponds to the JSON property avsResponseCode

Returns:

  • (String)


1811
1812
1813
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1811

def avs_response_code
  @avs_response_code
end

#cvv_response_codeString

Optional. CVV response code from the gateway (available only when reCAPTCHA Enterprise is called after authorization). Corresponds to the JSON property cvvResponseCode

Returns:

  • (String)


1817
1818
1819
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1817

def cvv_response_code
  @cvv_response_code
end

#gateway_response_codeString

Optional. Gateway response code describing the state of the transaction. Corresponds to the JSON property gatewayResponseCode

Returns:

  • (String)


1822
1823
1824
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1822

def gateway_response_code
  @gateway_response_code
end

#nameString

Optional. Name of the gateway service (for example, stripe, square, paypal). Corresponds to the JSON property name

Returns:

  • (String)


1827
1828
1829
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1827

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1834
1835
1836
1837
1838
1839
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1834

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