IdempotencyKeyData

data class IdempotencyKeyData(val updatedAt: Date, val paymentAttemptId: String, val idempotencyKey: String)

Data retrieved from PaymentManager.getAllIdempotencyKeys.

Constructors

Link copied to clipboard
constructor(updatedAt: Date, paymentAttemptId: String, idempotencyKey: String)

Properties

Link copied to clipboard

the idempotency key generated for the payment request associated with the given paymentAttemptId.

Link copied to clipboard

the unique ID of the payment attempt, provided by the developer.

Link copied to clipboard

the date and time at which the idempotency key was last updated for the given paymentAttemptId.