Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudRecaptchaenterpriseV1TransactionData

import type { GoogleCloudRecaptchaenterpriseV1TransactionData } from "https://googleapis.deno.dev/v1/recaptchaenterprise:v1.ts";

Transaction data associated with a payment protected by reCAPTCHA Enterprise.

interface GoogleCloudRecaptchaenterpriseV1TransactionData {
cardBin?: string;
cardLastFour?: string;
currencyCode?: string;
paymentMethod?: string;
shippingValue?: number;
transactionId?: string;
value?: number;
}

§Properties

§

Optional. Address associated with the payment method when applicable.

§
cardBin?: string
[src]

Optional. The Bank Identification Number - generally the first 6 or 8 digits of the card.

§
cardLastFour?: string
[src]

Optional. The last four digits of the card.

§
currencyCode?: string
[src]

Optional. The currency code in ISO-4217 format.

§

Optional. Information about the payment gateway's response to the transaction.

§

Optional. Items purchased in this transaction.

§

Optional. Information about the user or users fulfilling the transaction.

§
paymentMethod?: string
[src]

Optional. The payment method for the transaction. The allowed values are:

  • credit-card * debit-card * gift-card * processor-{name} (If a third-party is used, for example, processor-paypal) * custom-{name} (If an alternative method is used, for example, custom-crypto)
§

Optional. Destination address if this transaction involves shipping a physical item.

§
shippingValue?: number
[src]

Optional. The value of shipping in the specified currency. 0 for free or no shipping.

§
transactionId?: string
[src]

Unique identifier for the transaction. This custom identifier can be used to reference this transaction in the future, for example, labeling a refund or chargeback event. Two attempts at the same transaction should use the same transaction id.

§

Optional. Information about the user paying/initiating the transaction.

§
value?: number
[src]

Optional. The decimal value of the transaction in the specified currency.