Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionDataItem

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

Line items being purchased in this transaction.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionDataItem

Returns a new instance of GoogleCloudRecaptchaenterpriseV1TransactionDataItem.



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

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

Instance Attribute Details

#merchant_account_idString

When a merchant is specified, its corresponding account_id. Necessary to populate marketplace-style transactions. Corresponds to the JSON property merchantAccountId

Returns:

  • (String)


1541
1542
1543
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1541

def 
  @merchant_account_id
end

#nameString

The full name of the item. Corresponds to the JSON property name

Returns:

  • (String)


1546
1547
1548
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1546

def name
  @name
end

#quantityFixnum

The quantity of this item that is being purchased. Corresponds to the JSON property quantity

Returns:

  • (Fixnum)


1551
1552
1553
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1551

def quantity
  @quantity
end

#valueFloat

The value per item that the user is paying, in the transaction currency, after discounts. Corresponds to the JSON property value

Returns:

  • (Float)


1557
1558
1559
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1557

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

def update!(**args)
  @merchant_account_id = args[:merchant_account_id] if args.key?(:merchant_account_id)
  @name = args[:name] if args.key?(:name)
  @quantity = args[:quantity] if args.key?(:quantity)
  @value = args[:value] if args.key?(:value)
end