Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionEvent

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

Describes an event in the lifecycle of a payment transaction.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionEvent

Returns a new instance of GoogleCloudRecaptchaenterpriseV1TransactionEvent.



1965
1966
1967
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1965

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

Instance Attribute Details

#event_timeString

Optional. Timestamp when this transaction event occurred; otherwise assumed to be the time of the API call. Corresponds to the JSON property eventTime

Returns:

  • (String)


1944
1945
1946
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1944

def event_time
  @event_time
end

#event_typeString

Optional. The type of this transaction event. Corresponds to the JSON property eventType

Returns:

  • (String)


1949
1950
1951
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1949

def event_type
  @event_type
end

#reasonString

Optional. The reason or standardized code that corresponds with this transaction event, if one exists. For example, a CHARGEBACK event with code 6005. Corresponds to the JSON property reason

Returns:

  • (String)


1956
1957
1958
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1956

def reason
  @reason
end

#valueFloat

Optional. The value that corresponds with this transaction event, if one exists. For example, a refund event where $5.00 was refunded. Currency is obtained from the original transaction data. Corresponds to the JSON property value

Returns:

  • (Float)


1963
1964
1965
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1963

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1970
1971
1972
1973
1974
1975
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1970

def update!(**args)
  @event_time = args[:event_time] if args.key?(:event_time)
  @event_type = args[:event_type] if args.key?(:event_type)
  @reason = args[:reason] if args.key?(:reason)
  @value = args[:value] if args.key?(:value)
end